I have no permissions listed that should give this warning, however, it appears when trying to install the extension.
screenshot
{
"manifest_version": 3,
"name": "app name",
"description": "",
"version": "0.0.3",
"icons": {
"16": "icons/16.png",
"32": "icons/32.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"permissions": [
"activeTab",
"scripting",
"storage",
"windows",
"https://localhost:4200/*",
"https://character.ai/*",
"https://www.figgs.ai/*",
"https://static.figgs.ai/*",
"https://janitorai.com/*",
"https://ella.janitorai.com/*",
"https://spicychat.ai/*",
"https://ndsc.b-cdn.net/*"
],
"host_permissions": [
"http://localhost:4200/*",
"https://character.ai/*",
"https://www.figgs.ai/*",
"https://static.figgs.ai/*",
"https://janitorai.com/*",
"https://ella.janitorai.com/*",
"https://spicychat.ai/*",
"https://ndsc.b-cdn.net/*"
],
"web_accessible_resources": [
{
"resources": [
"app.tsx",
"main.js"
],
"matches": [
"<all_urls>"
]
}
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Exporter",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http://localhost:4200/*",
],
"js": [
"content-scripts/content.js"
]
}
]
}
According to the google permissions documentation, the only permission strings that should give the “read your browsing history” warning are the “declarativeNetRequestFeedback”, “sessions”, “tabs”, and “webNavigation” strings. My manifest.json does not list any of these so I am confused if there is something else in my manifest.json that could trigger this. Any solutions?
4