GitHub Project Enhancer

GitHub Project Enhancer

Enhance GitHub Projects to add accordion UI and so on.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GitHub Project Enhancer",
  "short_name": "GPE",
  "version": "0.7.3",
  "description": "Enhance GitHub Projects to add accordion UI and so on.",
  "icons": {
    "128": "assets/icon.png"
  },
  "author": "[email protected]",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/projects/*"
      ],
      "css": [
        "css/foldering.css",
        "css/storyPoint.css"
      ],
      "js": [
        "js/foldering.js",
        "js/storyPoint.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "options_ui": {
    "page": "html/options.html",
    "open_in_tab": false
  }
}