How to add extension #38
|
asking how to add extension thank you |
Replies: 1 comment
|
There is no extension argument in the wrapper, but InvisiblePlaywright(seed=42, profile_dir="/path/to/profile")Launch once with that path, install the Worth knowing before you add one. A Firefox extension is visible to pages through its web-accessible resources, so it is a fingerprint surface of its own, and an extension that rewrites If you want to see what an extension changes about the fingerprint before you commit to one, the surfaces are written up one at a time at https://feder-cr.github.io/invisible_playwright/. |
There is no extension argument in the wrapper, but
profile_dir=gives you a persistent Firefox profile, and an extension installed into that profile stays across runs:Launch once with that path, install the
.xpithe normal way fromabout:addons, then reuse the same directory. Withoutprofile_direvery session builds a fresh profile from the seed, which is why an extension installed in one run is gone in the next.Worth knowing before you add one. A Firefox extension is visible to pages through its web-accessible resources, so it is a fingerprint surface of its own, and an extension that rewrites
navigatoror canvas will be argu…