I need a button or bookmarklet to delete the cookies from the current context. Clearing the cache would be another option.

Specifically, I am logged into too many Google sites and have multiple accounts active. If I log out, it logs everything out.

I want to delete the cookies for a given context (eg. on music.google.com, delete cookies for music.google.com but leave cookies for ever other site like accouts.google.com, thus refreshing the page prompts me for which account I'd like to use.

link|improve this question
Depending on how Google account logins work, that might not even be possible at all. – slhck Dec 9 '11 at 22:43
Yeah, I'm not fond of web development but I created wrote a bit of JavaScript to do it, but it didn't delete the header only cookies. I thought maybe extensions might have more control – codeReign Dec 10 '11 at 19:46
feedback

2 Answers

You can do it through Chrome settings. Just go to Preferences -> Options -> Under the Hood -> Content settings -> All cookies and site data...

There you can filter single domain from the list and delete the ones you like.

link|improve this answer
feedback

The bookmarklet from http://ostermiller.org/bookmarklets/cookies.html should work without modification. Just visit the target website first

javascript:void((function(){var%20a,b,c,e,f;f=0;a=document.cookie.split(";%20");for(e=0;e<a.length&&a[e];e++){f++;for(b="."+location.host;b;b=b.replace(/^(?:%5C.|[^%5C.]+)/,"")){for(c=location.pathname;c;c=c.replace(/.$/,"")){document.cookie=(a[e]+";%20domain="+b+";%20path="+c+";%20expires="+new%20Date((new%20Date()).getTime()-1e11).toGMTString());}}}alert("Expired%20"+f+"%20cookies");})())
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.