您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
当前为
// ==UserScript== // @name Google Shut Up! Stop Annoying Cookies Request! // @namespace http://tampermonkey.net/ // @version 0.1.3 // @description try to take over the world! // @author You // @match https://www.google.com/* // @match https://news.google.com/* // @match https://play.google.com/* // @match https://www.youtube.com/* // @match https://apps.google.com/* // @match https://translate.google.it/* // @match https://duo.google.com/* // @grant none // ==/UserScript== (function() { var style = document.createElement("style"); style.innerHTML = "#lb, iron-overlay-backdrop.opened[style^='z-index: 2201;'], ytd-consent-bump-lightbox[id='consent-bump']{display: none !important}"; if(document.URL.match(/https\:\/\/www\.youtube\.com/i) === null){ style.innerHTML += "html{overflow-y: scroll !important}"; } document.body.appendChild(style); })();