Skips all uploads with blocked tags
当前为
// ==UserScript==
// @author Frubi
// @version 1.0
// @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');
tagLoop:
for ( let i = 0 ; i < a.length ; i++ )
{
for ( let j = 0 ; j < tags.size() ; j++)
{
if(a[i].text.toLowerCase().indexOf(tags[j]) !== -1)
{
$('.stream-next').click();
break tagLoop;
}
}
}
}, 500);