Stash Notifier

Stash Notifier

Displays the number of unreviewed pull requests. You can also click the button to open Stash.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Stash Notifier",
  "short_name": "Stash Notifier",
  "description": "Displays the number of unreviewed pull requests. You can also click the button to open Stash.",
  "version": "0.2.0",
  "omnibox": {
    "keyword": "stash"
  },
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  },
  "permissions": [
    "notifications",
    "tabs",
    "http://*/",
    "https://*/"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "128.png"
  },
  "homepage_url": "http://janisz.github.io/StashNotifier/",
  "offline_enabled": false
}