OctoAudit

OctoAudit

Add TODO items from issue comments in GitHub

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OctoAudit",
  "version": "0.0.9",
  "description": "Add TODO items from issue comments in GitHub",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/*/pull/*",
        "https://github.com/*/*/issues/*"
      ],
      "run_at": "document_end",
      "css": [
        "css/octoaudit.css"
      ],
      "js": [
        "js/vendor/jquery.min.js",
        "js/octoaudit.js"
      ]
    }
  ],
  "icons": {
    "16": "img/octoaudit-16.png",
    "48": "img/octoaudit-48.png",
    "64": "img/octoaudit-64.png",
    "128": "img/octoaudit-128.png",
    "256": "img/octoaudit-256.png"
  },
  "web_accessible_resources": [
    "js/octoaudit.coffee",
    "js/octoaudit.js.map"
  ]
}