diff --git a/.gitignore b/.gitignore index e43b0f9..0c5b4e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ .DS_Store +Archive.zip +.amo-upload-uuid diff --git a/6fd68f08d4504eb297b6-1.1.xpi b/6fd68f08d4504eb297b6-1.1.xpi new file mode 100644 index 0000000..9479000 Binary files /dev/null and b/6fd68f08d4504eb297b6-1.1.xpi differ diff --git a/README.md b/README.md index 4c4a02e..5f6f232 100644 --- a/README.md +++ b/README.md @@ -4,4 +4,8 @@ Browser extension that removes all the notifications about rooms for rent and sh Will remove any notifications containing the any of the ~keywords~ keyphrases in keywords.txt so you can make it hide other stuff too if you wanted. -I've only tested with chrome and brave, atm the easiest way to install this is to turn on dev mode in chrome://extensions/ (or equivalent), click on 'Load unpacked' and select the Aula-Extension folder. \ No newline at end of file +I've only tested with Chrome, Brave and Firefox. The easiest way to install this on chromium or similar is to turn on dev mode in chrome://extensions (or equivalent), click on 'Load unpacked' and select the Aula-Extension folder. + +For firefox I've built an xpi which is signed (surprisingly difficult), just open a new firefox tab and drag it into the window. + +I'm working on getting the extension published on the chrome and firefox stores. \ No newline at end of file diff --git a/manifest.json b/manifest.json index 6f67855..a74f717 100644 --- a/manifest.json +++ b/manifest.json @@ -16,5 +16,15 @@ "resources": ["keywords.txt"], "matches": ["https://coventry.aula.education/*"] } - ] -} \ No newline at end of file + ], + + "browser_specific_settings": { + "gecko": { + "id": "aulaadremoverpublic@tussockyjoker.com", + "data_collection_permissions": { + "required": ["none"], + "optional": [] + } + } +} +}