您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
优化油猴脚本网站中文版(https://gf.qytechs.cn/zh-CN)代码显示区,采用暗色彩色风格和Consolas字体,阅读代码更加舒服。
当前为
// ==UserScript== // @name 油猴脚本网站 Greasy Fork镜像 页面美化及去广告 // @description 优化油猴脚本网站中文版(https://gf.qytechs.cn/zh-CN)代码显示区,采用暗色彩色风格和Consolas字体,阅读代码更加舒服。 // @icon https://gf.qytechs.cn/assets/blacklogo96-1221dbbb8f0d47a728f968c35c2e2e03c64276a585b8dceb7a79a17a3f350e8a.png // @namespace https://gf.qytechs.cn/zh-CN/users/393603-tsing // @version 1.1 // @author Tsing // @run-at document-start // @match https://gf.qytechs.cn/zh-CN/scripts* // @grant none // ==/UserScript== (function() { 'use strict'; var style_tag = document.createElement('style'); style_tag.innerHTML = '.width-constraint{max-width:1260px !important;} pre.prettyprint.lang-js.prettyprinted{font-family: "Consolas"; background-color: #1a1a1a; color: #ffffff; font-size: 1.2em;} .com{color: #666 !important;} .pln{color: #fff !important;} .kwd{color: #2ff !important;} .clo, .opn, .pun{color: #ccc !important;} .str{color: #ff6 !important;} .lit{color: #4ff !important;} .typ{color: #f4f !important;} '; document.head.appendChild(style_tag); document.addEventListener ("DOMContentLoaded", remove_ad); // 等DOM加载完毕时执行 function remove_ad(){ document.getElementById("codefund").remove(); document.getElementById("script-show-info-ad").remove(); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址