Markdown Outline for GitHub

It will show you the outline of the markdown file on GitHub.

What is Markdown Outline for GitHub?

Markdown Outline for GitHub is a Chrome extension developed by mitsuruog, and its main feature is "It will show you the outline of the markdown file on GitHub.".

Extension Screenshots

screenshot
screenshot

Download Markdown Outline for GitHub Extension CRX File

Download Markdown Outline for GitHub 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

                        It will show you the outline of the markdown file on GitHub and Gist.                    

Extension Basic Information

Name Markdown Outline for GitHub Markdown Outline for GitHub
ID nkbceicafhlobddjmlflmhbloffdekcd
Official URL https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd
Description It will show you the outline of the markdown file on GitHub.
File Size 31.85 KB
Installation Count 47
Current Version 0.1.3
Last Updated 2020-09-12
Publish Date 2020-06-02
Rating 5.00/5 Total 1 Ratings
Developer mitsuruog
Email [email protected]
Payment Type free
Extension Website https://github.com/mitsuruog/markdown-outline-for-github
Help Page URL https://github.com/mitsuruog/markdown-outline-for-github/issues
Supported Languages en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.1.3",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "default_locale": "ja",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}