Table of Contents for GitHub

Table of Contents for GitHub

Adds a table of contents to repositories, gists and wikis on GitHub

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Table of Contents for GitHub",
  "short_name": "GitHub ToC",
  "version": "0.2.5",
  "author": "Arthur Hammer",
  "homepage_url": "https://github.com/arthurhammer/github-toc",
  "description": "Adds a table of contents to repositories, gists and wikis on GitHub",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/*",
        "https://gist.github.com/*/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "github-toc.js"
      ]
    }
  ]
}