-
This is the generated manifest from the {
"manifest_version": 3,
"name": "Uploader",
"description":"",
"version": "0.0.2",
"icons": {
...
},
"homepage_url": "https://www.podsuite.io",
"permissions": ["tabs", "identity", "storage"],
"background": { "service_worker": "background.js" },
"action": { "default_title": "PODSuite Uploader", "default_popup": "popup.html" },
"content_scripts": [
{
"matches": ["*://*.merch.amazon.com/*"],
"css": ["content-scripts/amazon.css"],
"js": ["content-scripts/amazon.js"]
},
{ "matches": ["https://www.google.com/"], "js": ["content-scripts/google.js"] }
]
} and for some reason I need to give a host permission justification. Is that because of the content scripts? |
Beta Was this translation helpful? Give feedback.
Answered by
aklinker1
May 8, 2024
Replies: 1 comment 4 replies
-
Yes, the content scripts. See the description to the right of the input. It mentions content scripts as a cause. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
Wizzel1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, the content scripts. See the description to the right of the input. It mentions content scripts as a cause.