Hello,
In my Chrome extension, the "Read and change site data" option shows a disabled radio button for specific domains. I have added "optional_permissions" and "optional_host_permissions" in my manifest, but users cannot select specific domains or "all sites" when managing permissions.
Could you help me understand why this radio button remains inactive and how I can ensure it becomes selectable?
[manifest.json]
{
"manifest_version": 3,
"name": "WEBふきだし",
"version": "1.0.23",
"icons": {
},
"action": {
"default_icon": {
},
"default_popup": "index.html",
"default_title": "WEBふきだし"
},
"permissions": [
"activeTab"
],
"optional_permissions": [
"identity",
"scripting",
"contextMenus",
"storage"
],
"optional_host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"key": "*************************",
"oauth2": {
"client_id": "*******************************************",
"scopes": [
"
https://www.googleapis.com/auth/userinfo.email"
]
}
}
Thank you!