Files
Aula-Fixer/manifest.json
2026-02-23 19:54:46 +00:00

31 lines
710 B
JSON

{
"manifest_version": 3,
"name": "Aula Fixer",
"version": "1.0",
"description": "Based on my Aula ad remover project, Removes all the notifications about rooms for rent on Aula and changes the styling so that it doesn't waste so much screen space.",
"content_scripts": [
{
"matches": ["https://coventry.aula.education/*"],
"js": ["content.js"]
}
],
"web_accessible_resources": [
{
"resources": ["keywords.txt"],
"matches": ["https://coventry.aula.education/*"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "aulafixer@tussockyjoker.com",
"data_collection_permissions": {
"required": ["none"],
"optional": []
}
}
}
}