Compare commits
2 Commits
c7b4955291
...
3c703d7425
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c703d7425 | |||
| 91b692593f |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -4,3 +4,5 @@ Archive.zip
|
||||
dev-resources
|
||||
content copy.js
|
||||
aula-fixer_v1-2.zip
|
||||
.env
|
||||
build_scripts
|
||||
35
manifest_chrome.json
Normal file
35
manifest_chrome.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"
|
||||
}
|
||||
}
|
||||
}
|
||||
35
manifest_ff.json
Normal file
35
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