Disable Google Optimize page-hiding CSS

Disable Google Optimize page-hiding CSS.

目前为 2019-01-02 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Disable Google Optimize page-hiding CSS
  3. // @name:ja Google Optimize page-hiding CSSの無効化
  4. // @description Disable Google Optimize page-hiding CSS.
  5. // @description:ja Google Optimize page-hiding CSSを無効にします。
  6. // @namespace masshiro.blog
  7. // @version 1.0
  8. // @author masshiro
  9. // @match http://*/*
  10. // @match https://*/*
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. document.getElementsByTagName('html')[0].classList.remove('async-hide');
  17. })();