notif-visa-ext/manifest.json

29 lines
881 B
JSON
Raw Permalink Normal View History

2024-04-15 04:31:09 +00:00
{
2024-04-17 00:15:45 +00:00
"action": {
"default_popup": "index.html"
},
"background": {
"service_worker": "/js/background.js"
},
"content_scripts": [ {
"css": [ "/css/sweetalert.css" ],
"js": [ "/js/rescheduler.js", "/js/sweetalert.js" ],
"matches": [ "https://ais.usvisa-info.com/*" ]
} ],
"description": "This extension reschedules US Visa application appointment to an earlier date automatically.",
"externally_connectable": {
"matches": [ "https://ais.usvisa-info.com/*" ]
},
"host_permissions": [ "https://ais.usvisa-info.com/*" ],
"icons": {
"128": "icon128.png",
"16": "icon16.png",
"48": "icon48.png"
},
"incognito": "spanning",
"manifest_version": 3,
2024-04-17 01:49:42 +00:00
"name": "not-a-rescheduler",
2024-04-17 00:15:45 +00:00
"permissions": [ "storage", "tabs", "activeTab", "notifications", "declarativeContent" ],
2024-04-18 06:13:22 +00:00
"version": "0.0.13"
2024-04-15 04:31:09 +00:00
}