您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
add a fake tracker script so that EagleCloud tracker won't register it's tracker logic
// ==UserScript== // @name eagle remover // @namespace http://tampermonkey.net/ // @version 2024-05-11-3 // @description add a fake tracker script so that EagleCloud tracker won't register it's tracker logic // @author Monalisa // @match https://*/** // @icon https://www.google.com/s2/favicons?sz=64&domain=hanspagel.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Create a new script element var script = document.createElement('script'); // Set the src attribute to include 'ia_security_' in the URL script.src = 'https://example.com/js/ia_security_example.js'; // Append the script to the document's head (or any other suitable location) document.head.appendChild(script); window.dlpExtensionStarted = true; console.log('registered eagle remover'); })();