GitHub Extended

GitHub Extended

Discover more repositories

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.5.0",
  "manifest_version": 2,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "scripts/content.js",
        "scripts/emoji.js",
        "scripts/colors.js",
        "bower_components/fetch/fetch.js",
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/jquery-ui/jquery-ui.min.js"
      ],
      "css": [
        "bower_components/jquery-ui/themes/smoothness/jquery-ui.min.css"
      ]
    }
  ],
  "permissions": [
    "https://github.com/*"
  ]
}