Github Markdown Outline Extension

Displays a clickable outline of all topic headers for markdown documents on Github

What is Github Markdown Outline Extension?

Github Markdown Outline Extension is a Chrome extension developed by Unknown, and its main feature is "Displays a clickable outline of all topic headers for markdown documents on Github".

Extension Screenshots

screenshot

Download Github Markdown Outline Extension Extension CRX File

Download Github Markdown Outline Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                                            

Extension Basic Information

Name Github Markdown Outline Extension Github Markdown Outline Extension
ID gccinjjdbfdkkkebfbeipopijjfohfgj
Official URL https://chromewebstore.google.com/detail/github-markdown-outline-e/gccinjjdbfdkkkebfbeipopijjfohfgj
Description Displays a clickable outline of all topic headers for markdown documents on Github
File Size 146 KB
Installation Count 171
Current Version 1.4.2
Last Updated 2016-01-16
Publish Date 2016-01-16
Rating 4.20/5 Total 5 Ratings
Developer Unknown
Payment Type free
Extension Website https://github.com/dbkaplun/github-markdown-outline-extension
Help Page URL https://github.com/dbkaplun/github-markdown-outline-extension/issues
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Markdown Outline Extension",
    "description": "Displays a clickable outline of all topic headers for markdown documents on Github",
    "version": "1.4.2",
    "homepage_url": "https:\/\/github.com\/dbkaplun\/github-markdown-outline-extension",
    "author": "Dan Kaplun ",
    "icons": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "index.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}