您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypasses Chip.gg GeoBlock
// ==UserScript== // @name ChipPass // @namespace http://tampermonkey.net/ // @version 1.0 // @description Bypasses Chip.gg GeoBlock // @author @officiallymelon // @match *://*.chips.gg/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Function to remove elements based on the provided selectors function removeElements() { // Selector for the "Restricted Country" message // Get the element and remove it if it exists const restrictedCountryElement = document.querySelector('.sc-aXZVg.sc-gEvEer.sc-eqUAAy.sc-iGgWBj.fRzEiv.jOxjSs.dVSjCO'); if (restrictedCountryElement) { restrictedCountryElement.remove(); console.log('Removed "Restricted Country" element.'); } // Additional selectors and elements can be added in a similar fashion // ... } // Run the function to remove elements removeElements(); // If the page content is loaded dynamically, observe changes and apply the removal function const observer = new MutationObserver(removeElements); observer.observe(document.body, { childList: true, subtree: true }); })();