aci/extension/manifest.json
Ashhhleyyy f2db68d186
All checks were successful
Build extension ZIP / Build extension (push) Successful in 1m33s
chore(extension): bump version number for release
2024-03-11 09:38:55 +00:00

35 lines
805 B
JSON

{
"manifest_version": 2,
"name": "aci",
"version": "0.2.1",
"description": "auto checkin",
"content_scripts":[
{
"matches": ["*://checkin.york.ac.uk/selfregistration"],
"js": ["src/content.js"]
}
],
"permissions": [
"storage",
"webRequest",
"*://aci-api.ashhhleyyy.dev/*",
"*://checkin.york.ac.uk/*"
],
"background": {
"scripts": ["src/background.js"],
"type": "module"
},
"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}"
}
}
}