您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fix weird stuffs in the menus of https://genshin-impact-map.appsample.com/.
// ==UserScript== // @name Genshin Impact Map Fix // @name:es Genshin Impact Map Fix // @author Beto Vickers // @description Fix weird stuffs in the menus of https://genshin-impact-map.appsample.com/. // @description:es Arregla cosas extrañas en los menús de https://genshin-impact-map.appsample.com/. // @match https://genshin-impact-map.appsample.com/* // @version 1.0 // @namespace https://gf.qytechs.cn/users/695502 // @grant none // @run-at document-start // ==/UserScript== function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } addGlobalStyle('.fixed-top { display: none !important; }'); // Optional (remove donations bar) addGlobalStyle('#sidebar { padding-bottom: 0px !important; }'); addGlobalStyle('#sidebar .sidebar-footer { display: none !important; }'); addGlobalStyle('.tab-content[data-v-6196efa4] { scrollbar-width: thin !important; }'); addGlobalStyle('.tab-content[data-v-6196efa4] { padding-top: 10px !important; margin-top: 10px !important; }'); // Add a "/*" from the start of this line if you are using English addGlobalStyle('.ml-3, .mx-3 { margin-left: 0.3rem !important; }'); addGlobalStyle('.mb-3, .my-3 { margin-bottom: 0rem !important; }'); addGlobalStyle('.mr-3, .mx-3 { margin-right: 0.3rem !important; }'); addGlobalStyle('.mt-3, .my-3 { margin-top: 0.3rem !important; }');
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址