Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there such a plugin?

share|improve this question
1  
Using what? Javascript? PHP? .NET? – joshcomley May 26 '09 at 23:36

9 Answers

For Google chrome browser, go like this;

  1. Right click on the page and choose; Inspect element.
  2. Go to Resources tab.
  3. Scroll down to Cookies, you will find your site there, just click on it to see all the cookies related to your site.
share|improve this answer
Great, thanks.. – g33kz0r Aug 29 '11 at 11:14
Great alternative to the buried options dialog! Thanks – Chris M. Apr 25 '12 at 9:47
Does not seem to allow you to edit or add a cookie though. – Zenox Mar 15 at 13:09

Options / Under the Hood / Show Cookies, no plugin needed.

share|improve this answer
11  
The location has changed, it is now under: Options / Under the Hood / Content settings... / Cookies / Show cookies and other site data... – Brook Miles Aug 9 '10 at 20:52
2  
Last button name is now "All cookies and site data..." – Paulo Manuel Santos Jul 20 '11 at 9:04
German: "Einstellungen -> Details -> Inhaltseinstellungen... -> Alle Cookies und Websitedaten..." – Chris M. Apr 25 '12 at 9:49
1  
This has gone missing in Chrome 19 (at least I can't find it!) :-( – Nick Craig-Wood May 29 '12 at 10:02
1  
1. Keyboard shortcut Ctrl + Shift + J opens developer tools 2. There is a tab "Resources" with tree-view in it. Look for green item "Cookies": goo.gl/YNmjK It's same as @numediaweb mentioned. – Eugene Naydenov Aug 13 '12 at 21:24
show 1 more comment

This works in chrome (displaying cookies for current domain). Moreover it lets you edit them:

javascript:void(document.cookie=prompt(document.cookie,document.cookie));

EDIT: This is a js code for a bookmarklet. Add above code instead of boomkmarked page URL.

share|improve this answer
Does this still work? Not working for me... – Shane N Aug 30 '12 at 20:27
1  
Yes, but remember to use it as a bookmarklet – aaimnr Aug 31 '12 at 14:46
This is great! Thanks a lot for this tip. – Patryk Oct 28 '12 at 12:19

This is also available by using the Developer Tools ("Tools" -> "Developer Tools"), and looking at the Storage tab. This will show you the cookies for the current page.

share|improve this answer

Chrome version 21+

Enter URL:

chrome://chrome/settings/cookies

You can then filter cookies by domain, view cookie contents, and remove cookies.

share|improve this answer
thanks, that was the easiest way I found to be able to copy the content of a cookie. – mirod Apr 9 at 13:14

here is a plug in called Edit This Cookie for chrome

here you can find : https://chrome.google.com/webstore/detail/fngmhnnpilhplaeedifhccceomclgfbg

share|improve this answer

CookieSpy -- http://www.cookiespy.com -- shows cookies for Chrome, Chrome Canary, Chomium

share|improve this answer

There are quite few Chrome extensions that allow you to view and edit cookies: https://chrome.google.com/webstore/search/cookie

My preferred one at the moment is a Cookie Manager: https://chrome.google.com/webstore/detail/kbnfbcpkiaganjpcanopcgeoehkleeck

share|improve this answer

In Firefox type: "javascript: alert(document.cookie);" into the awesome bar to see an alert with your cookie for that page. Does this work in chrome?

share|improve this answer
It works, but the plaintext representation of a cookie isn't that readable. – Andre Boos Jul 8 '10 at 23:14

protected by Andrew Barber Jul 21 '12 at 19:19

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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