add .env support
This commit is contained in:
35
src/manifest_ff.json
Normal file
35
src/manifest_ff.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"manifest_version": 3,
|
||||
"name": "Aula Fixer",
|
||||
"version": "1.3",
|
||||
"description": "Removes all notifications about rooms for rent etc. on Aula and changes styling so that less screen space is wasted.",
|
||||
|
||||
"background": {
|
||||
"service_worker": "background.js",
|
||||
"scripts": ["background.js"]
|
||||
},
|
||||
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["https://coventry.aula.education/*"],
|
||||
"js": ["content.js"]
|
||||
}
|
||||
],
|
||||
|
||||
"host_permissions": [
|
||||
"https://git.wbell.dev/*"
|
||||
],
|
||||
|
||||
"web_accessible_resources": [
|
||||
{
|
||||
"resources": ["keywords.txt"],
|
||||
"matches": ["https://coventry.aula.education/*"]
|
||||
}
|
||||
],
|
||||
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "aula-fixer@tussockyjoker.com"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user