aci/extension/manifest.json

36 lines
805 B
JSON
Raw Normal View History

2024-02-16 12:42:44 +00:00
{
"manifest_version": 2,
2024-02-16 12:42:44 +00:00
"name": "aci",
"version": "0.3.0",
"description": "auto checkin",
2024-02-16 12:42:44 +00:00
"content_scripts":[
{
"matches": ["*://checkin.york.ac.uk/selfregistration"],
"js": ["src/content.js"]
}
],
"permissions": [
"storage",
2024-02-16 12:42:44 +00:00
"webRequest",
"*://aci-api.ashhhleyyy.dev/*",
"*://checkin.york.ac.uk/*"
],
"background": {
"scripts": ["src/background.js"],
"type": "module"
2024-02-17 21:47:42 +00:00
},
"browser_action": {
"default_popup": "src/popup.html"
},
"options_ui": {
"page": "src/config.html"
},
"browser_specific_settings": {
"gecko": {
"update_url": "https://git.ashhhleyyy.dev/ash/aci/raw/branch/main/addon_updates.json",
"id": "{1f6e8923-f08b-4ed9-8756-f336ed308be4}"
}
}
2024-02-16 12:42:44 +00:00
}