Tree Status for Mozilla

Tree Status for Mozilla

Displays status of selected Mozilla mercurial trees in toolbar icon & popup. Web Extension successor to https://addons.mozilla.org/en-US/firefox/addon/mozilla-tree-status/

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Tree Status for Mozilla",
  "version": "0.12resigned1",
  "description": "__MSG_extensionDescription__",
  "author": "Kwan",
  "icons": {
    "32": "/icons/tree.svg",
    "48": "/icons/tree.svg",
    "64": "/icons/tree.svg",
    "96": "/icons/tree.svg"
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "default_locale": "en",
  "permissions": [
    "alarms",
    "storage",
    "https://treestatus.mozilla-releng.net/"
  ],
  "optional_permissions": [
    "notifications"
  ],
  "browser_action": {
    "default_icon": {
      "16": "icons/tree.svg",
      "32": "icons/tree.svg"
    },
    "default_title": "__MSG_browserActionDefaultTitle__",
    "default_popup": "popup/popup.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true,
    "browser_style": true
  }
}