Files
Aula-Fixer/manifest.json

31 lines
616 B
JSON

{
"manifest_version": 3,
"name": "Aula Ad Filter",
"version": "1.1",
"description": "Removes all the notifications about rooms for rent on Aula",
"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": "aulaadremoverpublic@tussockyjoker.com",
"data_collection_permissions": {
"required": ["none"],
"optional": []
}
}
}
}