您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Disable Google Optimize page-hiding CSS.The homepage using Google Optimize will show up quickly.
// ==UserScript== // @name Disable Google Optimize page-hiding CSS // @name:ja Google Optimize page-hiding CSSの無効化 // @description Disable Google Optimize page-hiding CSS.The homepage using Google Optimize will show up quickly. // @description:ja Google Optimize page-hiding CSSを無効にします。Google Optimizeを使用しているホームページが、素早く表示されるようになります。 // @namespace masshiro.blog // @version 20200412 // @author masshiro // @license MIT License // @match http://*/* // @match https://*/* // @grant none // @run-at document-body // @noframes // ==/UserScript== (function() { 'use strict'; const node = document.getElementsByTagName('html'); for (const elm of node) { const attr = elm.getAttribute('style') || ''; elm.setAttribute('style', attr + ';opacity:1 !important;'); elm.classList.remove('async-hide'); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址