您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Downvote /r/politics. This script is breaking the ToS of the site it runs on as can be seen here: https://reddit.zendesk.com/hc/en-us/articles/205192985 This is an exact copy of the downvote /r/the_donald script.
// ==UserScript== // @name Reddit downvote /r/politics // @namespace http://tampermonkey.net/ // @version 0.1 // @description Downvote /r/politics. This script is breaking the ToS of the site it runs on as can be seen here: https://reddit.zendesk.com/hc/en-us/articles/205192985 This is an exact copy of the downvote /r/the_donald script. // @author You // @match https://www.reddit.com/r/politics* // @grant none // ==/UserScript== (function() { $(document).ready(function() { setTimeout(function(){ $('.sitetable .arrow.down').click(); }, 500); }); })();