diff options
author | Yuchen Pei <id@ypei.org> | 2023-08-26 11:55:56 +1000 |
---|---|---|
committer | Yuchen Pei <id@ypei.org> | 2023-08-26 11:59:46 +1000 |
commit | b72fe68bf964fe386f76897296c87ea3b1fdf148 (patch) | |
tree | 588c8e7c46491b1afcf441600b0aac0cc407a574 /manifest.json |
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/
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 28 |
1 files changed, 28 insertions, 0 deletions
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 |