views:

1589

answers:

4

Is there such a plugin?

+5  A: 

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

Alex Martelli
The location has changed, it is now under:Options / Under the Hood / Content settings... / Cookies / Show cookies and other site data...
Brook Miles
A: 

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?

adept
It works, but the plaintext representation of a cookie isn't that readable.
Andre Boos
A: 

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

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

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.

jmcmann