Files
job-board-notifications/job-notifier/manifest.json

50 lines
1.0 KiB
JSON

{
"manifest_version": 3,
"name": "Andela Job Notifier",
"version": "2.1",
"description": "Checks for new job opportunities on Andela with auto-login",
"permissions": [
"notifications",
"alarms",
"storage",
"offscreen",
"tabs",
"scripting"
],
"host_permissions": [
"https://app.andela.com/*",
"https://notify.tstitagency.com/*",
"https://script.google.com/*",
"https://script.googleusercontent.com/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://app.andela.com/*"],
"js": ["content.js"],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"web_accessible_resources": [
{
"resources": ["notify.wav"],
"matches": ["<all_urls>"]
}
]
}