innhibit/extension/manifest.json

30 lines
695 B
JSON

{
"manifest_version": 3,
"name": "DNR Advantage",
"version": "1.0",
"description": "Chrome extension for checking guests against a Do Not Rent list.",
"permissions": ["notifications", "activeTab", "storage"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://choiceadvantage.com/choicehotels/*"],
"js": ["content.js"]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}