aci/extension/manifest.json

26 lines
525 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.0.1",
"description": "auto checkin",
2024-02-16 12:42:44 +00:00
"content_scripts":[
{
"matches": ["*://checkin.york.ac.uk/selfregistration"],
"js": ["src/content.js"]
}
],
"permissions": [
"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"
2024-02-16 12:42:44 +00:00
}
}