Hides the google cache header on sites.
// ==UserScript== // @name Hide header from google cache version of a site // @namespace Joshua Williams // @version 1.1 // @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('[class*=google-cache-hdr]').style.display = 'none' })();