Glossary
Cookie jar
The store a browser keeps cookies in. Everything sharing one jar shares one identity, which is why isolation is a property of the jar and not of the tab.
Also called: cookie store.
The cookie jar is where a browser keeps the cookies a site has set, keyed by domain, path and the flags that came with them. It is not the only thing a site can write — local storage, IndexedDB, the HTTP cache and service-worker registrations all persist too — but it is the one people think of, and its behaviour is the model for the rest: everything that shares a jar shares an identity. Two tabs share it. So does a second window. An incognito window gets a fresh one, and then shares that fresh one with every other incognito window.
The operational consequence is that separation has to happen at the level of the store, not the tab. In Argus the store belongs to the profile, which is backed by its own user-data directory rather than a partition inside a shared one, so a site reading the identifier it wrote for one account finds nothing at all in the next. A jar can also be filled deliberately: a saved session assigned to a profile is seeded at launch, which is what cookie sets are.
More from the glossary
Browser profile
A directory on disk holding everything one browsing identity owns — cookies, storage, cache, history and settings — plus, in an anti-detect browser, its fingerprint and proxy.
Residential proxy
A proxy whose exit address belongs to a consumer internet connection, which is what makes a login from it unremarkable.
Datacenter proxy
A proxy hosted in a data centre. Fast, cheap and openly identifiable as hosting, which makes it right for fetching public pages and wrong for signing in.
ISP proxy
An address registered to a consumer ISP but hosted in a data centre — datacenter speed and stability with residential registration.
Mobile proxy
A proxy exiting through a carrier network, where one address is shared by thousands of real phones — which is what makes it tolerant.
SOCKS5
A general-purpose proxy protocol that forwards TCP connections without inspecting them, optionally behind a username and password.
Every entry is listed on the glossary index.