Compare commits

2 Commits

3 changed files with 72 additions and 0 deletions

2
.gitignore vendored
View File

@@ -4,3 +4,5 @@ Archive.zip
dev-resources dev-resources
content copy.js content copy.js
aula-fixer_v1-2.zip aula-fixer_v1-2.zip
.env
build_scripts

35
manifest_chrome.json Normal file
View 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
View 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"
}
}
}