返回首頁 

头部

Remove ad div element from the webpage


Install this script?
// ==UserScript==// @name         头部// @namespace    http://tampermonkey.net/// @version      1// @description  Remove ad div element from the webpage// @match        http://www.htmanga3.top/*// @match        *://www.htmanga3.top/*// @grant        none// ==/UserScript==(function() {'use strict';var elements = document.querySelectorAll('script[type="text/javascript"][src=""][innerHTML*="img4.561245.xyz"]');for (var i = 0; i < elements.length; i++) {var scriptParent = elements[i].parentNode;scriptParent.remove();}})();