콘솔에서 아래 스크립트를 붙여넣고 엔터
javascript: (function() {
var ok = confirm("this will remove all cookies of this site. procceed?");
if (ok) {
_clearCookies();
}
function _clearCookies() {
var a, b, c, d, e, f, g;
a = document.cookie.split("; ").map(function(e) {
return e.trim();
});
b = new Date(new Date().getTime() - 1e11).toUTCString();
for (c = 0; c < a.length; c++) {
d = document.location.hostname;
e = /^(.|[^.]+)/;
while (d.length > 0) {
f = document.location.pathname;
g = /(/|[^/]+)$/;
while (f.length > 0) {
document.cookie = a[c] + "; domain=" + d + "; path=" + f + "; expires=" + b;
f = f.replace(g, "");
}
d = d.replace(e, "");
}
}
}
})();