tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

manifest.json (912B)


      1 {
      2  "manifest_version": 2,
      3  "name": "IPP Activator",
      4  "version": "0.1",
      5  "description": "A system add-on to activate IPP in 143",
      6  "permissions": ["tabs", "cookies", "webRequest", "<all_urls>"],
      7  "browser_specific_settings": {
      8    "gecko": {
      9      "id": "ipp-activator@mozilla.com",
     10      "strict_min_version": "143.0"
     11    }
     12  },
     13  "background": {
     14    "scripts": [
     15      "conditions/base.js",
     16      "conditions/and.js",
     17      "conditions/or.js",
     18      "conditions/not.js",
     19      "conditions/test.js",
     20      "conditions/cookie.js",
     21      "conditions/url.js",
     22      "conditions/factory.js",
     23      "bg.js"
     24    ],
     25    "persistent": true
     26  },
     27  "experiment_apis": {
     28    "ippActivator": {
     29      "schema": "api/schemas/ipp.json",
     30      "parent": {
     31        "scopes": ["addon_parent"],
     32        "script": "api/parent/ext-ipp.js",
     33        "events": ["startup"],
     34        "paths": [["ippActivator"]]
     35      }
     36    }
     37  }
     38 }