Hide "A privacy reminder from Google"

Whatever

当前为 2018-01-02 提交的版本,查看 最新版本

// ==UserScript==
// @name     Hide "A privacy reminder from Google"
// @description Whatever
// @include  https://*.google.*
// @version  1
// @grant    none
// @namespace https://greasyfork.org/users/2969
// ==/UserScript==

let s = document.createElement('style')
s.textContent = `

	[jsaction^="dg_dismissed"] ~ * ,
	[jsaction^="dismiss_warmup"] {
     display: none !important;
  }

`;

document.head.appendChild(s);