diff options
author | Ruben Rodriguez <ruben@trisquel.info> | 2022-09-08 20:18:54 -0400 |
---|---|---|
committer | Ruben Rodriguez <ruben@trisquel.info> | 2022-09-08 20:18:54 -0400 |
commit | 5da28b0f8771834ae208d61431d632875e9f8e7d (patch) | |
tree | 688ecaff26197bad8abde617b4947b11d617309e /data/extensions/torproxy@icecat.gnu/manifest.json | |
parent | 4a87716686104266a9cccc2d83cc249e312f3673 (diff) |
Updated extensions:
* Upgraded Privacy Redirect to 1.1.49 and configured to use the 10 most reliable invidious instances
* Removed ViewTube
* Added torproxy@icecat.gnu based on 'Proxy toggle' extension
* Added jShelter 0.11.1
* Upgraded LibreJS to 7.21.0
* Upgraded HTTPS Everywhere to 2021.7.13
* Upgraded SubmitMe to 1.9
Diffstat (limited to 'data/extensions/torproxy@icecat.gnu/manifest.json')
-rw-r--r-- | data/extensions/torproxy@icecat.gnu/manifest.json | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/data/extensions/torproxy@icecat.gnu/manifest.json b/data/extensions/torproxy@icecat.gnu/manifest.json new file mode 100644 index 0000000..f03ee3e --- /dev/null +++ b/data/extensions/torproxy@icecat.gnu/manifest.json @@ -0,0 +1,45 @@ +{
+ "manifest_version": 2,
+ "name": "Tor Proxy Toggle",
+ "version": "1.2.1",
+ "description": "Toggle between direct connection and using Tor routing from a local daemon (requires a Tor service installed an running, separately of IceCat). Based on 'Proxy toggle' extension",
+ "icons": {
+ "48": "icons/p1.svg",
+ "96": "icons/p1.svg"
+ },
+ "permissions": [
+ "storage",
+ "proxy",
+ "<all_urls>",
+ "webRequest",
+ "webRequestBlocking"
+ ],
+ "browser_action": {
+ "browser_style": true,
+ "default_icon": "icons/p1.svg",
+ "default_title": "Tor Proxy Toggle"
+ },
+ "commands": {
+ "_execute_browser_action": {
+ "suggested_key": {
+ "default": "Ctrl+Shift+Y"
+ },
+ "description": "Toggle Tor proxy on/off"
+ }
+ },
+ "background": {
+ "scripts": [
+ "background.js"
+ ]
+ },
+ "options_ui": {
+ "page": "settings.html",
+ "browser_style": true
+ },
+ "applications": {
+ "gecko": {
+ "strict_min_version": "60.0",
+ "id": "torproxy@icecat.gnu"
+ }
+ }
+}
|