I want to access my Chrome stored cookies from the JavaScript console. Is this possible?
If you only need the cookies for the active site: Have a look at document.cookie
. It contains semicolon-separated key=value
pairs.
Edit: Note that due to security concerns you can't access cookies from a different domain. When you run something from the console, it's the equivalent of it running directly from the page, so since they don't want a spam site getting your Facebook credentials, you'll have to go to each website separately.