您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
without consequences
// ==UserScript== // @name NO ADVERTISING ZERT // @namespace http://tampermonkey.net/ // @version 0.1 // @description without consequences // @author blahblah // @match https://triep.io/ // @icon https://sun9-74.userapi.com/impg/6jY26kEuZ0qU5I9x7mdBOdQ2zA8pG8H9s3AkDw/BTLz1oDKei0.jpg?size=604x340&quality=96&sign=9fe860f5ff054a01d1ffef1c2f9c79fb&type=album // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function RemoveAds() { const elementRight = document.getElementById('triep-io_300x600'); const elementBottom = document.getElementById('triep-io_970x250'); if (elementRight) { elementRight.remove(); } if (elementBottom) { elementBottom.remove(); } } function startAdRemoval() { RemoveAds(); setInterval(RemoveAds, 1); } window.addEventListener('load', startAdRemoval); document.body.addEventListener('click', RemoveAds); })();