Markdown Outline for GitHub

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

Wat is Markdown Outline for GitHub?

Markdown Outline for GitHub is een Chrome-extensie ontwikkeld door mitsuruog, en de belangrijkste functie is "It will show you the outline of the markdown file on GitHub.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Markdown Outline for GitHub

Download Markdown Outline for GitHub-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Markdown Outline for GitHub Markdown Outline for GitHub
ID nkbceicafhlobddjmlflmhbloffdekcd
Officiële URL https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd
Beschrijving It will show you the outline of the markdown file on GitHub.
Bestandsgrootte 31.85 KB
Aantal Installaties 47
Huidige Versie 0.1.3
Laatst Bijgewerkt 2020-09-12
Publicatiedatum 2020-06-02
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar mitsuruog
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/mitsuruog/markdown-outline-for-github
Help Pagina-URL https://github.com/mitsuruog/markdown-outline-for-github/issues
Ondersteunde Talen 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
        }
    ]
}