tor-browser

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

manifest.json (873B)


      1 {
      2  "manifest_version": 2,
      3  "name": "actions",
      4  "version": "1.0",
      5  "description": "Defines Page and Browser actions",
      6  "browser_specific_settings": {
      7    "gecko": {
      8      "id": "actions@tests.mozilla.org"
      9    }
     10  },
     11  "browser_action": {
     12    "default_title": "Test action default",
     13    "theme_icons": [
     14      {
     15        "light": "button/beasts-32-light.png",
     16        "dark": "button/beasts-32.png",
     17        "size": 32
     18      }
     19    ]
     20  },
     21  "page_action": {
     22    "default_title": "Test action default",
     23    "default_icon": {
     24      "19": "button/geo-19.png",
     25      "38": "button/geo-38.png"
     26    }
     27  },
     28  "background": {
     29    "scripts": ["background.js"]
     30  },
     31  "content_scripts": [
     32    {
     33      "matches": ["<all_urls>"],
     34      "js": ["content.js"]
     35    }
     36  ],
     37  "permissions": [
     38    "tabs",
     39    "geckoViewAddons",
     40    "nativeMessaging",
     41    "nativeMessagingFromContent"
     42  ]
     43 }