Greasy Fork is available in English.
等待页面加载完成后会自动删除广告,两段非常简单的js代码。
// ==UserScript==
// @name 低端影视去广告
// @namespace Violentmonkey Scripts
// @match https://ddrk.me/*
// @grant none
// @version 1.0
// @author datehoer
// @license MIT
// @description 等待页面加载完成后会自动删除广告,两段非常简单的js代码。
// ==/UserScript==
(function() {
'use strict';
if(document.querySelector('#iaujwnefhw') != null){
document.querySelector('#iaujwnefhw').innerHTML='';
}
if(document.querySelector('#sajdhfbjwhe') != null){
document.querySelector('#sajdhfbjwhe').innerHTML='';
}
// Your code here...
})();