您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
当前为
// ==UserScript== // @name Instagram follow // @namespace http://tampermonkey.net/ // @version 0.2 // @description try to take over the world! // @author You // @match https://tampermonkey.net/index.php?version=4.7&ext=dhdg&updated=true // @grant none // ==/UserScript== (function() { 'use strict'; var jq = document.createElement('script'); jq.src = "//ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"; document.getElementsByTagName('head')[0].appendChild(jq); jQuery.noConflict(); //und das als script window.setInterval(function(){ var x = 0; $(document.getElementsByClassName("L3NKy")).each( function(){ if(!this.classList.contains("_8A5w5")){ // delete the exclamation mark to unfollow people if(x==1) {return false;} else {$(this).trigger("click"); x++;console.log('follow');}} } ) console.log('loop'); }, 90000); // zeit, die man zwischen den follows wartet. 90000ms ist recht safe 60000 = 1min })();