您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
该脚本用于 TikTok Ads
当前为
// ==UserScript== // @name epc++ // @namespace http://tampermonkey.net/ // @version 0.61 // @description 该脚本用于 TikTok Ads // @author handsomeboy // @match https://ads.tiktok.com/i18n/* // @grant GM_addStyle // @require https://code.jquery.com/jquery-3.6.0.min.js // ==/UserScript== (function() { 'use strict'; const observer = new MutationObserver((mutations, observer) => { // 检查是否存在 .prefix-content 元素 if (document.querySelector('.prefix-content')) { console.log("yes"); document.querySelectorAll('.prefix-content').forEach(element => { element.style.display = 'none'; }); } }); observer.observe(document.body, { childList: true, subtree: true }); setTimeout(() => { observer.disconnect(); console.log("观察已停止"); }, 5000); })();