Libraries.io | GitHub Companion

Libraries.io | GitHub Companion

Show dependency health as you browse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.1",
  "name": "Libraries.io | GitHub Companion",
  "description": "Show dependency health as you browse.",
  "icons": {
    "16": "icons/favicon-16.png",
    "128": "icons/favicon-128.png"
  },
  "permissions": [
    "https://github.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/*"
      ],
      "js": [
        "libs/jquery.min.js",
        "libs/handlebars.runtime-latest.js",
        "compiled-templates.js",
        "content-script.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "event-page.js"
    ],
    "persistent": false
  }
}