-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
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
WIP: Proposal "Allow to change permissions behavior on extension's update" #798
base: main
Are you sure you want to change the base?
WIP: Proposal "Allow to change permissions behavior on extension's update" #798
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the proposal — the behavior makes sense and generally aligns with what Safari does (we disable extensions on update if they cross a permission threshold, but without showing warnings).
That said, I think the property name could be more flexible. suppress_permissions_warning_on_update
is a bit too UI/UX specific and doesn’t map well in all browsers.
At the Berlin meeting, an enum was suggested — I think something like this would scale better:
"permissions_behavior_on_update": "defer"
This is more future-proof and avoids locking us into a UI-specific interpretation.
I plan to have a more detailed review of the proposal soon.
@xeenon, thank you; that's a great point! Enum I've updated the proposal's name and wording to account for the new name and value. |
@oleksiilevzhynskyi You will want to define the opposite value too. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the initial proposal doc!
@xeenon would advocate for auto
as well to have a neutral explicit default value.
|
||
Extension manifest file example: | ||
|
||
```json | ||
{ | ||
"suppress_permissions_warning_on_update": true | ||
"permissions_behavior_on_update": "defer" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably disregard; however want to mention it, we could be further future-proofed by making it an object.
{
"permissions_behavior": {
"updates": "defer",
}
}
allowing other types of permission behaviours we might want to introduce in the future.
Co-authored-by: carlosjeurissen <1038267+carlosjeurissen@users.noreply.github.com>
Co-authored-by: carlosjeurissen <1038267+carlosjeurissen@users.noreply.github.com>
Co-authored-by: carlosjeurissen <1038267+carlosjeurissen@users.noreply.github.com>
Co-authored-by: carlosjeurissen <1038267+carlosjeurissen@users.noreply.github.com>
Co-authored-by: carlosjeurissen <1038267+carlosjeurissen@users.noreply.github.com>
Co-authored-by: carlosjeurissen <1038267+carlosjeurissen@users.noreply.github.com>
Co-authored-by: carlosjeurissen <1038267+carlosjeurissen@users.noreply.github.com>
Co-authored-by: carlosjeurissen <1038267+carlosjeurissen@users.noreply.github.com>
Co-authored-by: carlosjeurissen <1038267+carlosjeurissen@users.noreply.github.com>
Context
During a recent WECG meeting ("Upgrade Permissions" section), we discussed a #711 and Proposal for "Hybrid Permissions". The group agreed that the current behavior with "warning" is suboptimal and needs to be updated. Also, the group decided that adding a new manifest key for permissions doesn't make sense. Instead, we may add a property that will suppress permissions warning behavior and fall to "optional" behavior for new permissions during the update.
Proposal Summary
Add a new property, "permissions_behavior_on_update," to the manifest to alter the newly added "permissions" behavior during the extension's update. When set to "defer," newly added permissions on update won't be granted by default; they will behave like optional permissions and must be explicitly requested by the extension. Also, the default browser behavior will NOT be applied (warning, turn off, stop further updates, etc.).
The new behavior isn't applicable during install time or for permission that doesn't trigger a warning.
Extension manifest file example:
Open questions