Markdown Outline for GitHub

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

Co je Markdown Outline for GitHub?

Markdown Outline for GitHub je rozšíření Chrome vyvinuté mitsuruog, a jeho hlavní funkcí je „It will show you the outline of the markdown file on GitHub.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Markdown Outline for GitHub

Stáhněte si soubory rozšíření Markdown Outline for GitHub ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Markdown Outline for GitHub Markdown Outline for GitHub
ID nkbceicafhlobddjmlflmhbloffdekcd
Oficiální URL https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd
Popis It will show you the outline of the markdown file on GitHub.
Velikost souboru 31.85 KB
Počet instalací 47
Aktuální Verze 0.1.3
Poslední Aktualizace 2020-09-12
Datum Vydání 2020-06-02
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář mitsuruog
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/mitsuruog/markdown-outline-for-github
URL Stránky Nápovědy https://github.com/mitsuruog/markdown-outline-for-github/issues
Podporované Jazyky 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
        }
    ]
}