Red Labels for Pivotal Tracker

Red Labels for Pivotal Tracker

Want to see which Pivotal Tracker stories you can work on? Turn any "blocked" or "needs <something>" stories red so they stand out!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Red Labels for Pivotal Tracker",
  "version": "1.3.1",
  "manifest_version": 2,
  "author": "Mike Kenyon",
  "description": "Want to see which Pivotal Tracker stories you can work on? Turn any \"blocked\" or \"needs <something>\" stories red so they stand out!",
  "homepage_url": "https://github.com/mkenyon/red-labels-for-pivotal-tracker",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "http://www.pivotaltracker.com/*",
    "https://www.pivotaltracker.com/*"
  ],
  "short_name": "Red Labels",
  "content_scripts": [
    {
      "matches": [
        "http://www.pivotaltracker.com/*",
        "https://www.pivotaltracker.com/*"
      ],
      "js": [
        "src/inject/isLabelEligible.js",
        "src/inject/inject.js"
      ],
      "css": [
        "css/inject/inject.css"
      ]
    }
  ]
}