Greasy Fork is available in English.

Hide header from google cache version of a site

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 <joshuasrwilliams@gmail.com>
// @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'
})();