Markdown Outline for GitHub

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

Cos'è Markdown Outline for GitHub?

Markdown Outline for GitHub è un'estensione di Chrome sviluppata da mitsuruog, e la sua funzione principale è "It will show you the outline of the markdown file on GitHub.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Markdown Outline for GitHub

Scarica i file di estensione Markdown Outline for GitHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Markdown Outline for GitHub Markdown Outline for GitHub
ID nkbceicafhlobddjmlflmhbloffdekcd
URL Ufficiale https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd
Descrizione It will show you the outline of the markdown file on GitHub.
Dimensione del File 31.85 KB
Conteggio Installazioni 47
Versione Corrente 0.1.3
Ultimo Aggiornamento 2020-09-12
Data di Pubblicazione 2020-06-02
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore mitsuruog
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mitsuruog/markdown-outline-for-github
URL della Pagina di Aiuto https://github.com/mitsuruog/markdown-outline-for-github/issues
Lingue Supportate 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
        }
    ]
}