您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Move Youtube Mirror Bots and twitter bots to the top of the thread
// ==UserScript== // @name Bot to Top // @namespace http://tampermonkey.net/ // @version 0.8.0 // @description Move Youtube Mirror Bots and twitter bots to the top of the thread // @author Itskira // @match *://*.reddit.com/r/* // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... //Oddshot (/u/YouTubeConverterBot) if($('a.title').attr('href').toLowerCase().indexOf("oddshot.tv")) { //Link check var post = $(".commentarea a.author[href$='/user/YouTubeConverterBot']").parent().parent().parent(); //Comment + children post.parent().prepend(post); //Move it to the top post.css({outline: "1px solid #222547"}); //Purple from Oddshot outline } //Oddshot (/u/BeepBooBeepBoop) if($('a.title').attr('href').toLowerCase().indexOf("oddshot.tv")) { //Link check var post = $(".commentarea a.author[href$='/user/BeepBooBeepBoop']").parent().parent().parent(); //Comment + children post.parent().prepend(post); //Move it to the top post.css({outline: "1px solid #222547"}); //Purple from Oddshot outline } // Playstv (/u/playstv_bot) if($('a.title').attr('href').toLowerCase().indexOf("plays.tv")) { //Link check var post = $(".commentarea a.author[href$='/user/playstv_bot']").parent().parent().parent(); //Comment + children post.parent().prepend(post); //Move it to the top post.css({outline: "1px solid #5E94A4"}); //Blue from Playstv outline } //Twitter (/u/TweetPoster) if($('a.title').attr('href').toLowerCase().indexOf("twitter.com")) { //Link check var post = $(".commentarea a.author[href$='/user/TweetPoster']").parent().parent().parent(); //Comment + children post.parent().prepend(post); //Move it to the top post.css({outline: "1px solid #00aced"}); //Purple from Oddshot outline } //Gifv (/u/gifv-bot) if($('a.title').attr('href').toLowerCase().indexOf("plays.tv")) { //Link check var post = $(".commentarea a.author[href$='/user/gifv-bot']").parent().parent().parent(); //Comment + children post.parent().prepend(post); //Move it to the top post.css({outline: "1px solid #5E94A4"}); //Blue from Playstv outline } //Overwatch Patch Notes (/u/polarbytebot) if($('a.title').attr('href').toLowerCase().indexOf("battle.net")) { //Link check var post = $(".commentarea a.author[href$='/user/polarbytebot']").parent().parent().parent(); //Comment + children post.parent().prepend(post); //Move it to the top post.css({outline: "1px solid #FF9531"}); //Orange from Overwatch outline } })();