Room-Elephant / extension-chrome-key-retriever

Boost your web development productivity with this feature-rich extension. Gain complete visibility into the session, local, and cookie storage keys of your websites. Explore advanced functionalities like modifying these storage values and monitoring keys and sub keys effortlessly.
https://key-retriever.room-elephant.com/
Apache License 2.0
11 stars 2 forks source link

add domain to cookies #98

Open JPedroBorges opened 1 year ago

JPedroBorges commented 1 year ago

add form view value

JPedroBorges commented 1 year ago

Important GET If there are multiples match to a key, it will select based on the order that the browser sent it. This is not a new behavior, but would be interesting to figure out how is the order affected.

SET Retrieves information about a single cookie. If more than one cookie of the same name exists for the given URL, the one with the longest path will be returned. For cookies with the same path length, the cookie with the earliest creation time will be returned. https://developer.chrome.com/docs/extensions/reference/cookies/#method-get

What this is actually saying is even if we request a cookie for a subdomain (subdomain.domain.com) if there are collisions with a same name cookie in the domain (domain.com) it will pick the most recent.

I'm unsure if we should retrieve all the cookies and select the correct subdomain cookie, or if this is a non issue.

Should we dig deeper?