GitHub Red Alert

GitHub Red Alert

Changes the notification icon to red if you have participating notifications

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitHub Red Alert",
  "version": "0.11",
  "description": "Changes the notification icon to red if you have participating notifications",
  "permissions": [
    "https://github.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "vendor/jquery/dist/jquery.js",
        "dist/script.js"
      ],
      "css": [
        "dist/style.css"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "manifest_version": 2,
  "options_page": "dist/options.html",
  "options_ui": {
    "page": "dist/options.html",
    "chrome_style": true
  }
}