您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Clears cookies and other website data when you go to websites if it isn't allowed to store website data. Edit the code to include websites that can store data.
Some websites require use of JavaScript and use cookies or similar technologies that are often used for tracking rather than for remembering preferences. This userscript removes all data that websites remember while you are using websites, unless there are sites you explicitly add to prevent this from happening. This is not a replacement for a tracker blocker, it does not block network requests to tracking scripts.
The functionality of web pages may break when using this userscript.
You can a list of websites within the code to not clear website data from.
To do this, open your userscript manager's menu, find this script then edit it.
The only parts that should be edited are between the // start config
and // end config
comments.//
means a comment - remove it to active the exclusion.
// start config // clearWebsiteDataEveryXMilliseconds takes any number var clearWebsiteDataEveryXMilliseconds = 200; // runs on websites unless listed here // made using regular expressions - flags are ignored // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_expressions // https://regex101.com var websitesToNotRunOn = [ // cookies required for websites to work // anything requiring google account: // /^https:\/\/accounts\.google\.com/, // google docs: // /^https:\/\/docs\.google\.com/, // /^https:\/\/contacts\.google\.com/, // stay signed into youtube: // /^https:\/\/accounts\.youtube\.com/, // /^https:\/\/(www|m)\.youtube\.com/, // stay signed into soundcloud account // /^https:\/\/secure\.soundcloud\.com/, // /^https:\/\/soundcloud\.com/, // reddit requires cookies to work even without account // /^https:\/\/www\.reddit\.com/, // cookies that are needed to remember preferences // /^https:\/\/search\.brave\.com/, // /^https:\/\/([a-z]+\.)?wikipedia\.org/, ]; // end config
It is possible to apply this userscript to some mobile browsers.
On iOS using Safari (iOS 15+):
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址