您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Apple新闻类网站去除广告,9to5mac
当前为
// ==UserScript== // @name Apple新闻类网站去除广告 // @name:en Apple News website ad removal // @namespace https://banmiya.com/userscirpt/applenewsadremove // @version 1.0.0 // @description Apple新闻类网站去除广告,9to5mac // @description:en Apple News website to remove ads, 9to5mac // @author Zhoumin Lu // @match https://9to5mac.com/* // @icon none // @grant none // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.3/jquery.min.js // @license MIT // ==/UserScript== (function() { 'use strict'; var url = location.href if(url.includes("https://9to5mac.com/")){ // 9to5mac $(".ad-container").hide(); $(".adsense").hide(); } })();