// ==UserScript== // @name 🍉视频一键关注(按F上车) // @namespace http://tampermonkey.net/ // @version 0.1 // @description 打开某个大v的粉丝列表,按F直接一键关注其粉丝。注意不能关注太多,否则会被风控!一天不超过200个。 // @author YuerWang // @match https://www.ixigua.com/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.onkeydown=function(e){ var keyNum=window.event ? e.keyCode :e.which; if(keyNum==70){ var elementsByClassName = document.getElementsByClassName('component-follow'); var i=0; var mount=10;//改变此值可以改变按一次F关注的人数,不要按太快,此值也不要太大。 var e2 = document.createEvent("MouseEvents"); e2.initEvent("click", true, true); while (i