Skips all uploads with blocked tags
As of
// ==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==
//
let tags =
[
"schmuserkadser",
"big enough"
];
setInterval(function()
{
let a = document.getElementsByClassName('tag-link');
for ( let i = 0 ; i < a.length ; i++ )
{
if(a[i].text.toLowerCase().indexOf('schmuserkadser') !== -1)
{
$('.stream-next').click();
}
}
}, 500);