tor-browser

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

manifest.json (499B)


      1 {
      2  "manifest_version": 2,
      3  "name": "test-invalid-extension",
      4  "version": "1",
      5  "description": "the name says it all",
      6  "permissions": ["*://*.foo.com/*", "alarms", "notifications", "tabs"],
      7  "background": {
      8    "scripts": ["background.js"]
      9  },
     10  "content_scripts": [
     11    {
     12      "matches": "*://*.foo.com/*",
     13      "js": ["content.js"]
     14    }
     15  ],
     16  "browser_action": {
     17    "default_icon": {
     18      "32": "home.svg"
     19    },
     20    "default_title": "foobarbaz (v1)",
     21    "browser_style": true
     22  }
     23 }