您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Skips all uploads with blocked tags
// ==UserScript== // @author Frubi // @version 1.1 // @name Tag Blocker // @description Skips all uploads with blocked tags // @description:de Überspring alle Uploads mit geblockten Tags // @include *://pr0gramm.com/* // @grant none // @namespace Violentmonkey Scripts // ==/UserScript== // // To add more: simply put a comma behind the second last tag and paste your tag between "" // Note: only 1 tag in a pair of "" let tags = [ "schmuserkadser", "big enough" ]; let a; setInterval(function() { a = document.getElementsByClassName('tag-link'); let b = Math.min(5, a.length); tagLoop: for ( let i = 0 ; i < b ; i++ ) { for ( let j = 0 ; j < tags.length ; j++) { if(a[i].text.toLowerCase().indexOf(tags[j]) !== -1) { $('.stream-next').click(); break tagLoop; } } } }, 500);