Tag Blocker

Skips all uploads with blocked tags

目前为 2017-11-12 提交的版本。查看 最新版本

// ==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);