tor-browser

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

manifest.json (387B)


      1 {
      2  "manifest_version": 2,
      3  "name": "Dummy",
      4  "version": "1.0",
      5  "browser_specific_settings": {
      6    "gecko": {
      7      "id": "dummy@tests.mozilla.org"
      8    }
      9  },
     10  "description": "Doesn't do anything.",
     11  "options_ui": {
     12    "open_in_tab": true,
     13    "page": "options.html"
     14  },
     15  "content_scripts": [
     16    {
     17      "matches": ["*://*.example.com/*"],
     18      "js": ["dummy.js"]
     19    }
     20  ]
     21 }