innhibit/manifest.json
2023-10-03 23:55:15 -04:00

30 lines
742 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", "http://*/*", "https://*/*"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<URL of the Reservation Information page or pattern>"],
"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"
}
}