您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide all statistics info in blogger
当前为
// ==UserScript== // @name Blogger Statistics Hider // @name:zh-TW Blogger 流量資訊隱藏 // @namespace http://www.twsiyuan.com/ // @version 0.1 // @description Hide all statistics info in blogger // @description:zh-TW 在 Blogger 管理頁面中,隱藏所有的流量統計資訊 // @author Siyuan // @match https://www.blogger.com/home // @match https://www.blogger.com/blogger.g* // @grant none // ==/UserScript== (function() { 'use strict'; var sheet = window.document.styleSheets[0]; sheet.insertRule('.gwt-Image { display: none !important; }', sheet.cssRules.length); sheet.insertRule('.OJTUNIC-q-A tr:nth-child(3) { display: none !important; }', sheet.cssRules.length); sheet.insertRule('.DY0BBXD-p-d a:nth-child(2) { display: none !important; }', sheet.cssRules.length); sheet.insertRule('.OJTUNIC-F-g { display: none !important; }', sheet.cssRules.length); sheet.insertRule('.DY0BBXD-p-m { display: none !important; }', sheet.cssRules.length); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址