您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
The site keeps spamming graphic ads that pollutes your eyes! this script removes all of them so you can do your business peacefully.
当前为
// ==UserScript== // @name Anime1.me INAPPROPRIATE ADS BLOCKER!! BLOCK ALL THE STUPID ADS AND POSTERS // @namespace http://tampermonkey.net/ // @version 2023-12-12 // @description The site keeps spamming graphic ads that pollutes your eyes! this script removes all of them so you can do your business peacefully. // @author You // @match https://anime1.me/* // @grant none // @license PRIVATE // ==/UserScript== (function() { 'use strict'; document.querySelectorAll('div[id^="ad-"]').forEach(stupidad=>{ stupidad.remove(); }); document.querySelectorAll('div[class="vjs-poster"]').forEach(stupidvideoplayer=>{ stupidvideoplayer.style.backgroundImage = ""; stupidvideoplayer.style.background = "linear-gradient(144deg, rgba(9,9,121,1) 25%, rgba(0,212,255,1) 75%);"; }); //[poster~="playerImg"] document.querySelectorAll('video').forEach(stupidfreakingplayer=>{ stupidfreakingplayer.poster = ""; }); })();