Github Enhanced Project Board

Github Enhanced Project Board

An enhanced UI for Github project boards

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Github Enhanced Project Board",
  "description": "An enhanced UI for Github project boards",
  "version": "1.4.1",
  "page_action": {},
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.github.com/*",
        "https://*.github.com/*"
      ],
      "js": [
        "jquery.min.js",
        "github.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/github.png"
  ],
  "permissions": [
    "tabs"
  ],
  "icons": {
    "32": "images/github.png"
  }
}