Cookie and website data cleaner

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.

ของเมื่อวันที่ 14-08-2024 ดู เวอร์ชันล่าสุด

ผู้เขียน
Dan WL (DanWL)
คะแนน
0 0 0
เวอร์ชัน
1.1
สร้างเมื่อ
14-08-2024
อัปเดตเมื่อ
14-08-2024
Size
3.81 กิโลไบต์
สัญญาอนุญาต
MIT
ปรับใช้กับ
ไซต์ทั้งหมด

This is not a replacement for a tracker blocker, it does not block network requests to tracking scripts. Some websites require use of JavaScript and make cookie banners that are very tedious if you want to disallow consent and disallow 'legitimate interest'. The functionality of pages may break when using this userscript.

You must provide 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:

	// start config

	var clearWebsiteDataEveryXMilliseconds = 200;// any number
	var websitesToNotRunOn = {
		// enter in format 'https://example.com': true,
	};

	// end config