Pivotal Tracker Code Helper

Pivotal Tracker Code Helper

This simple extension adds code formatting in Pivotal comments and turns Pivotal IDs found in GitHub pull requests into links.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pivotal Tracker Code Helper",
  "version": "1.0.1",
  "description": "This simple extension adds code formatting in Pivotal comments and turns Pivotal IDs found in GitHub pull requests into links.",
  "icons": {
    "128": "icon.png"
  },
  "options_page": "html/options.html",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.pivotaltracker.com/*",
        "https://github.com/*"
      ],
      "js": [
        "js/lib/zepto.min.js",
        "js/main.js"
      ]
    }
  ]
}