notif-visa-ext/manifest.json

23 lines
690 B
JSON
Raw Normal View History

2024-04-15 04:31:09 +00:00
{
"manifest_version": 3,
2024-04-20 05:14:53 +00:00
"name": "not-a-rescheduler",
2024-04-28 05:53:38 +00:00
"version": "0.0.5",
2024-04-20 05:14:53 +00:00
"permissions": [ "storage", "tabs", "activeTab", "notifications", "declarativeContent" ],
2024-04-15 04:31:09 +00:00
"content_scripts": [
{
"matches": ["https://ais.usvisa-info.com/*"],
2024-04-25 02:48:50 +00:00
"js": ["scripts/content.js", "scripts/lodash-core.min.js"]
2024-04-15 04:31:09 +00:00
}
2024-04-20 05:14:53 +00:00
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": "images/icon_passport_48.png"
},
"icons": {
"16": "images/icon_passport_16.png",
"48": "images/icon_passport_48.png",
"128": "images/icon_passport_128.png",
"512": "images/icon_passport_512.png"
}
2024-04-15 04:31:09 +00:00
}