您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
tries to remove iframes on certain sites that are in the "@match" bar, it removes or tries to remove all iframes every 100 milliseconds so may cause lag or preformance drops on lowerend PCs you can change this by editting the sript by changing the "iT" variable
// ==UserScript== // @name iFrame Remover (REQUIRES JQuery) // @namespace http://tampermonkey.net/ // @version 0.2 // @description tries to remove iframes on certain sites that are in the "@match" bar, it removes or tries to remove all iframes every 100 milliseconds so may cause lag or preformance drops on lowerend PCs you can change this by editting the sript by changing the "iT" variable // @author Literally-Anyone-Can-Edit-And-Repost-This-So-Be-Careful-With-Tampermonkey-Scripts-Please // @match *://*.offmp3.com/* // @run-at document-end // @require https://code.jquery.com/jquery-3.5.1.min.js // @grant none // ==/UserScript== /* The iT Variable will ALWAYS be in milliseconds so 1000 milliseconds is equal to 1 second and 2000 is equal to 2 seconds etc. by doing 100 this process repeats itself every tenth of a second so the faster this script repeats the more cpu power it will take */ var iT = 100; setInterval(function(){ $('iframe').remove() }, iT);