From b72fe68bf964fe386f76897296c87ea3b1fdf148 Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Sat, 26 Aug 2023 11:55:56 +1000 Subject: First commit, imported from addons.mozilla.org, version 2.2.6 wget https://addons.mozilla.org/firefox/downloads/latest/rudolf-fernandes/latest.xpi mkdir limit-tabs unzip -d limit-tabs latest.xpi Not including the mozilla signatures. The extension is licensed under GNU GPLv3: https://addons.mozilla.org/en-US/firefox/addon/rudolf-fernandes/ --- manifest.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..de5853d --- /dev/null +++ b/manifest.json @@ -0,0 +1,28 @@ +{ + "applications": { + "gecko": { + "id": "rudolf.fernandes@gmail.com", + "strict_min_version": "79.0a1" + } + }, + "description": "For my autistic son. Limits tabs to maintain system responsiveness", + "manifest_version": 2, + "name": "Limit Tabs", + "version": "2.2.6", + "background": { + "scripts": [ + "limittabsto2.js" + ] + }, + "options_ui": { + "page": "options.html" + }, + "permissions": [ + "storage" + ], + "browser_action": { + "default_icon": { + "32": "icons/enabled.png" + } + } +} \ No newline at end of file -- cgit v1.2.3