accela_search/manifest.json

17 lines
426 B
JSON
Raw Normal View History

2024-05-03 16:19:50 -07:00
{
"manifest_version": 3,
"name": "Accela Alert",
"version": "1.0",
"description": "Alerts users when they navigate to an Accela website.",
"permissions": ["tabs", "scripting","activeTab", "declarativeContent"],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"https://*.accela.com/*"
]
}