Hide header from google cache version of a site

Hides the google cache header on sites.

当前为 2024-04-08 提交的版本,查看 最新版本

// ==UserScript==
// @name        Hide header from google cache version of a site
// @namespace   Joshua Williams
// @version     1.0
// @author      Joshua Williams <[email protected]>
// @license MIT
// @description Hides the google cache header on sites.
// @match       *://webcache.googleusercontent.com*
// @grant       GM_addStyle
// ==/UserScript==
 
(function() {
  document.querySelector('.__WebInspectorHideElement__').style.display = 'none'
})();
长期地址
遇到问题?请前往 GitHub 提 Issues。