We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
suggested .json format extension: (example)
{ "metadata":{ "version":1, "serial":2017091501 }, "conditional_entries":[ { "name": "uBlock origin", "conditions": [ { "enabled_extensions": [ { "id": "[email protected]", "type": "webextension" } ] } ], "entries":{ "allow":[ { "o":{"s":"moz-extension","h":"{extension_uuid}"}, "d":{"s":"https","h":"*","port":"*"} } ] } } ] }
or
{ "metadata":{ "version":1, "serial":2017091501 }, "conditional_entries":[ { "name": "uBlock origin", "condition": { "enabled_extension": { "id": "[email protected]", "type": "webextension" } }, "entries":{ "allow":[ { "o":{"s":"moz-extension","h":"{extension_uuid}"}, "d":{"s":"https","h":"*","port":"*"} } ] } } ] }
RP then needs to replace "{extension_uuid}" by the current UUID of the extension.
Btw, "conditional_entries" could be nested to allow for grouping.
I'm not sure if it's possible for WEs to retrieve the uuid. The uuid is stored in Extension.jsm [UUIDMap, Extension.uuid].
Extension.jsm
The text was updated successfully, but these errors were encountered:
web-extension://
implementation issue: RequestPolicyContinued/requestpolicy#846 WE API issue: RequestPolicyContinued/requestpolicy#845
Sorry, something went wrong.
No branches or pull requests
suggested .json format extension: (example)
or
RP then needs to replace "{extension_uuid}" by the current UUID of the extension.
Btw, "conditional_entries" could be nested to allow for grouping.
I'm not sure if it's possible for WEs to retrieve the uuid. The uuid is stored in
Extension.jsm
[UUIDMap, Extension.uuid].The text was updated successfully, but these errors were encountered: