您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Block Most Of The Ads In Pages. This Script Can Only Block Ads Which Are In "Iframe" Tags.
当前为
// ==UserScript== // @name 移除所有页面框架 Remove iframe // @namespace https://ez118.github.io/ // @version 1.2 // @icon https://adblockplus.org/favicon.ico // @description Block Most Of The Ads In Pages. This Script Can Only Block Ads Which Are In "Iframe" Tags. // @author ZZY_WISU // @match *://*/* // @license GNU GPLv3 // ==/UserScript== (function() { 'use strict'; setTimeout(function() { Array.prototype.forEach.call(document.querySelectorAll('iframe'), function(iframe) { iframe.parentElement.removeChild(iframe); }); }, 1000); })();