-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsilently-auto-clear-site-data.user.js
35 lines (32 loc) · 1.28 KB
/
silently-auto-clear-site-data.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// ==UserScript==
// @name Silent Auto Clear Site Data
// @version 2024-07-02
// @description Clean cookies and local storage
// @author abstraction
// @match https://www.summarize.tech/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=summarize.tech
// @grant none
// @homepageURL https://github.com/abstraction/userscripts/
// @updateURL https://github.com/abstraction/userscripts/raw/master/src/silently-auto-clear-site-data.user.js
// @downloadURL https://github.com/abstraction/userscripts/raw/master/src/silently-auto-clear-site-data.user.js
// ==/UserScript==
(function () {
'use strict';
// Clear cookies and site data
window.addEventListener('load', () => {
if ('storage' in navigator && 'estimate' in navigator.storage) {
navigator.storage.estimate().then((estimate) => {
if (estimate.usage > 0) {
navigator.storage.clear().then(() => {
console.log('All site storage cleared.');
});
}
});
}
document.cookie.split(';').forEach(cookie => {
const eqPos = cookie.indexOf('=');
const name = eqPos > -1 ? cookie.slice(0, eqPos) : cookie;
document.cookie = `${name}=;expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/`;
});
});
})();