GitHub markdown ToC

GitHub markdown ToC

Generate toc of github markdown automatically.

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 markdown ToC",
  "description": "Generate toc of github markdown automatically.",
  "version": "1.0.1",
  "author": "mtgto",
  "homepage_url": "https://github.com/mtgto/github-markdown-toc-chrome-extension",
  "icons": {
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/main.js"
      ]
    }
  ],
  "options_page": "html/options.html",
  "permissions": [
    "storage"
  ]
}