Skip to content
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

Open
wants to merge 13 commits into
base: main
Choose a base branch
from

Conversation

oleksiilevzhynskyi
Copy link

@oleksiilevzhynskyi oleksiilevzhynskyi commented Mar 28, 2025

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:

{
  "permissions_behavior_on_update": "defer"
}

Open questions

  • Double-check the name. Is it clear?
  • What should happen when the extension is already turned off or further updates are suppressed due to a permission warning? Should new property work retroactively and "restore" extension?

Copy link
Collaborator

@xeenon xeenon left a 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.

@oleksiilevzhynskyi
Copy link
Author

"permissions_behavior_on_update": "defer"

@xeenon, thank you; that's a great point! Enum permissions_behavior_on_update makes much more sense!

I've updated the proposal's name and wording to account for the new name and value.

@oleksiilevzhynskyi oleksiilevzhynskyi changed the title WIP: Proposal "Suppress permissions warning on update" WIP: Proposal "Allow to change permissions behavior on extension's update" Mar 31, 2025
@xeenon
Copy link
Collaborator

xeenon commented Mar 31, 2025

"permissions_behavior_on_update": "defer"

@xeenon, thank you; that's a great point! Enum permissions_behavior_on_update makes much more sense!

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. "disable", "prompt", "warn", …?

Copy link
Contributor

@carlosjeurissen carlosjeurissen left a 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"
Copy link
Contributor

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.

oleksiilevzhynskyi and others added 9 commits April 1, 2025 19:56
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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants