Youtube Video Disabler using Keyword

Disable Youtube Video base on Keyword

当前为 2016-09-30 提交的版本,查看 最新版本

// ==UserScript==
// @name        Youtube Video Disabler using Keyword
// @name:id     Youtube Video Disabler dengan kata kunci
// @namespace   YoutubeVideoDisablerKeyword
// @description Disable Youtube Video base on Keyword
// @description:id  Menonaktifkan Vieo Youtube berdasarkan kata kunci
// @include     https://www.youtube.com/watch*
// @version     1.2016
// @grant       none
// ==/UserScript==
var f = document.querySelector('span#eow-title');
var judul = f.title.split(" ");
var kyWrd = ["pregnant"]; // Change with blocked keyword, can be an array
for (var i; i < kyWrd.length(); i++)
  {
    for (var j; j < judul.length(); j++) {
      if(kyWrd[i] == judul[j])
        {
          var g = document.querySelector('#movie_player');
          g.remove();
        }
    }
  }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址