Twitter Following selector

This script will select Twitter Following automatically

  1. // ==UserScript==
  2. // @name Twitter Following selector
  3. // @name:en Twitter Following selector
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.1.2
  6. // @description This script will select Twitter Following automatically
  7. // @description:en This script will select Twitter Following automatically
  8. // @author Cukurgalva
  9. // @match https://twitter.com/*
  10. // @match https://mobile.twitter.com/*
  11. // @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com
  12. // @grant none
  13. // @license NO!
  14. // @run-at document-idle
  15. // ==/UserScript==
  16.  
  17. (function(h) {
  18. 'use strict';
  19. h = setInterval(function(){
  20. [... document.querySelectorAll('main a[role=tab]')]
  21. .filter(e=>e.innerText === 'Following')
  22. .forEach(e=>{
  23. e.click();
  24. clearInterval(h);
  25. });
  26. }, 200)
  27. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址