Ahmed Rafi Ullah
unread,Oct 23, 2024, 2:25:01 AMOct 23Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chromium Extensions, Ahmed Rafi Ullah, Patrick Kettner, Chromium Extensions
I investigated some more and found that contentSetting was causing the issue, though it seems strange that one permission that can trigger a warning would show other permissions that also trigger warnings.
My mv2 manifest is this
"permissions": [
"<all_urls>",
"proxy",
"management",
"tabs",
"webRequest",
"webRequestBlocking",
"activeTab",
"storage",
"unlimitedStorage",
"contextMenus",
"privacy",
"webNavigation",
"notifications",
"cookies"
],
While mv3 was this
"permissions": [
"activeTab",
"contentSettings",
"contextMenus",
"declarativeNetRequestWithHostAccess",
"privacy",
"proxy",
"notifications",
"scripting",
"storage",
"tabs",
"webRequest",
"webRequestAuthProvider",
"management",
"alarms",
"offscreen",
"unlimitedStorage"
],
the manifest file below with contentSettings in the optional permissions field fixes this issue, though im uneasy because i think this may also be a bug ? Im not sure
"permissions": [
"activeTab",
"contextMenus",
"declarativeNetRequestWithHostAccess",
"privacy",
"proxy",
"notifications",
"scripting",
"storage",
"tabs",
"webRequest",
"webRequestAuthProvider",
"management",
"alarms",
"offscreen",
"unlimitedStorage"
],
"optional_permissions": ["contentSettings"],