Disable Google Optimize page-hiding CSS.
当前为
// ==UserScript==
// @name Disable Google Optimize page-hiding CSS
// @name:ja Google Optimize page-hiding CSSの無効化
// @description Disable Google Optimize page-hiding CSS.
// @description:ja Google Optimize page-hiding CSSを無効にします。
// @namespace masshiro.blog
// @version 1.0
// @author masshiro
// @match http://*/*
// @match https://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementsByTagName('html')[0].classList.remove('async-hide');
})();