如何阻止 Google 上烦人的“在您继续之前”弹出窗口?

如何阻止 Google 上烦人的“在您继续之前”弹出窗口?

之前可以使用 Google 并禁用 Cookie,或者使用扩展程序Cookie 自动删除或类似的东西。

几个星期后,这种情况就消失了。每次删除 cookie 后,我都会收到一个弹出窗口,要求我“接受”。

继续之前

Google 使用 Cookie 和其他数据来提供、维护和改进我们的服务和广告。如果您同意,我们将根据您在 Google 服务(如搜索、地图和 YouTube)上的活动,对您看到的内容和广告进行个性化。我们也有合作伙伴来衡量我们的服务使用情况。点击“查看更多”查看您的选项或随时访问 g.co/privacytools。

[我同意]

这意味着我们基本上被迫接受无所不能的 google cookie。

这类似于“登录 YouTube”弹出问题

如何避免出现“在您继续之前”弹出窗口,同时保留短暂可抛出的 Google cookie?

笔记:Google 同意对话框移除器存在但不再起作用。

答案1

通过扩展程序(例如 Tampermonkey for铬合金, 或者火狐):

// ==UserScript==
// @name         avoid Google's "before you continue"
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  How to block the annoying “Before you continue” popup on Google?
// @author       jonas
// @url          https://stackoverflow.com/a/63999294/1153476
// @match        https://www.google.com/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

// This will remove the popup but there are some problems:
// Buttons and menus like 'More', 'Tools', and many others will not work
const style = document.createElement('style');
style.innerHTML = /* css */ `
  div[aria-modal] {
    display: none !important;
  }
`;
document.head.append(style);

// This solves the previous problems but it's probably not that great for privacy
const consentMatch = document.cookie.match(/CONSENT=(PENDING|YES)\+(\d+)/);
document.cookie=`CONSENT=YES+${consentMatch ? consentMatch[2] : '0'}; domain=.google.com`;

在 Tampermonkey 的脚本Settings页面上,设置Run atdocument-start

答案2

只需阻止您看到此弹出窗口的页面上的所有 cookie 即可。

打开查看站点信息窗格

阻止您在此处看到的所有 cookie

答案3

除了 Stepan 的回答之外,您还可以将两个域(google.comwww.google.com)添加到 Google 组策略设置中。您可以在以下位置找到此设置:Google-Google Chrome-内容设置-阻止这些网站上的 cookie。这样您就可以在整个公司范围内推广这一点。此外,当您的用户使用时google.<countrycode>,也请添加这些。这有助于本地 Google 网站用户。

答案4

看来这里发布的用户脚本已经停止工作了,所以这里有一个更简单的版本可以帮我解决问题:)

使用 tampermonkey 安装的直接链接: https://gist.github.com/WoLpH/985a6072b35926eb4a3f9d2cdd0a2dad/raw/596925b09a38c1003cac97a3419db12e4b02f005/google-cookie-consent.user.js

如果你有任何建议或疑问:https://gist.github.com/WoLpH/985a6072b35926eb4a3f9d2cdd0a2dad


// ==UserScript==
// @name         Google Cookie Consent Remover
// @namespace    https://gist.github.com/WoLpH/985a6072b35926eb4a3f9d2cdd0a2dad
// @version      0.1
// @description  Remove Google's annoying cookie consent questions (especially annoying for Incognito windows)
// @author       Wolph
// @match        https://www.google.com/*
// @grant        none
// ==/UserScript==

document.querySelector('div[aria-modal]').remove();

相关内容