高端影视

低端影视 屏蔽广告插件 故写此脚本

目前為 2020-06-03 提交的版本,檢視 最新版本

// ==UserScript==
// @name        高端影视
// @namespace   Violentmonkey Scripts
// @match       https://ddrk.me/*
// @grant       none
// @version     0.0.2
// @author      -
// @description 低端影视 屏蔽广告插件 故写此脚本
// ==/UserScript==
(function() {
    'use strict';

    // Your code here...
    var killAll = true;

    setInterval(function () {
      if(killAll && document.getElementsByTagName("img")){
      var ads = document.getElementsByTagName("img");
      for (var i = 0; i < ads.length; i++){
        if (ads[i].src.startsWith("https://ddrk.me/mtp/") || ads[i].src.startsWith("https://ddrk.me/pbw/")) {
            ads[i].parentNode.removeChild(ads[i]);
        }
      }
        killAll = false;
      }
        
    },100);
    
})();

QingJ © 2025

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