Support cookieStoreId option in userScripts.register
Categories
(WebExtensions :: General, enhancement, P5)
Tracking
(firefox98 fixed)
Tracking | Status | |
---|---|---|
firefox98 | --- | fixed |
People
(Reporter: erosman, Assigned: onlinericha19)
References
(Depends on 1 open bug)
Details
(Keywords: dev-doc-complete)
Attachments
(1 file)
Target APIs:
- contentScripts.register()
- userScripts.register()
Currently, users are able to decide whether an extension can run in Private Browsing Mode or not, and set it globally.
Scripts (or CSS) in contentScripts.register()
& userScripts.register()
are registered from the background script globally and do not differentiate between normal or private browsing.
Being able to set whether the script (or CSS) should be injected in private mode or not, would enhance (the control over) the aforementioned APIs.
For example, the following registration would only inject into tabs in normal mode.
const scriptObj = await browser.contentScripts.register({
matches: ["*://*.org/*"],
js: [{file: "/content_scripts/example.js"}],
runAt: "document_idle",
incognito: false // defaults to true
});
Update
Change to Support cookieStoreId option in userScripts.register
const scriptObj = await browser.contentScripts.register({
matches: ["*://*.org/*"],
js: [{file: "/content_scripts/example.js"}],
runAt: "document_idle",
cookieStoreId: "firefox-default"
});
Comment 1•3 years ago
|
||
Support for cookieStoreId: "firefox-private"
is being introduced in bug 1470651.
That's only for contentScripts.register
, not userScripts.register
though.
Assignee | ||
Comment 2•3 years ago
|
||
Updated•3 years ago
|
Reporter | ||
Comment 3•3 years ago
|
||
Will the cookieStoreId
in userScripts.register
feature be ready for Firefox 97 like contentScripts.register
?
Comment 4•3 years ago
|
||
Maybe, if the review+update cycle completes in time.
Reporter | ||
Updated•3 years ago
|
Reporter | ||
Updated•3 years ago
|
Reporter | ||
Comment 5•3 years ago
|
||
Can the unit tests be made available for the review for the current Firefox 97 (as requested on Dec 15th)?
Note: Firefox 97 soft freeze date is 2022-01-06.
Comment 6•3 years ago
|
||
The patch author is a volunteer who is not bound to deadlines.
Assignee | ||
Comment 7•3 years ago
|
||
I'll try to have a unit test ready before the soft freeze.
Comment 8•3 years ago
|
||
There's a r+ patch which didn't land and no activity in this bug for 2 weeks.
:onlinericha19, could you have a look please?
For more information, please visit auto_nag documentation.
Updated•3 years ago
|
Updated•3 years ago
|
Comment 10•3 years ago
|
||
bugherder |
Updated•3 years ago
|
Description
•