How to clear all cookies or at least restart the browser in a tampermonkey/greasemonkey script?
Advertisement
Answer
To clear the cookies edit your Chrome shortcut (or write a shell script in Linux/MacOS) and add
JavaScript
x
2
1
--remote-debugging-port=1234
2
(or use a random port number that’s not used by other processes) so you can send Network.clearBrowserCookies
RDP command:
JavaScript
1
20
20
1
// ==UserScript==
2
// @name Clear cookies
3
// @match https://www.example.org/*
4
// @grant GM_xmlhttpRequest
5
// @connect localhost
6
// ==/UserScript==
7
8
GM_xmlhttpRequest({
9
url: 'http://localhost:1234/json',
10
responseType: 'json',
11
method: 'GET',
12
onload(e) {
13
const ws = new WebSocket(e.response[0].webSocketDebuggerUrl);
14
ws.onopen = () => {
15
ws.send(JSON.stringify({id: 1, method: 'Network.clearBrowserCookies'}));
16
};
17
ws.onerror = console.warn;
18
},
19
});
20