Github Markdown Outline Extension

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

Was ist Github Markdown Outline Extension?

Github Markdown Outline Extension ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Displays a clickable outline of all topic headers for markdown documents on Github".

Erweiterungsscreenshots

screenshot

Github Markdown Outline Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Markdown Outline Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                                            

Grundlegende Informationen zur Erweiterung

Name Github Markdown Outline Extension Github Markdown Outline Extension
ID gccinjjdbfdkkkebfbeipopijjfohfgj
Offizielle URL https://chromewebstore.google.com/detail/github-markdown-outline-e/gccinjjdbfdkkkebfbeipopijjfohfgj
Beschreibung Displays a clickable outline of all topic headers for markdown documents on Github
Dateigröße 146 KB
Installationsanzahl 171
Aktuelle Version 1.4.2
Letztes Update 2016-01-16
Veröffentlichungsdatum 2016-01-16
Bewertung 4.20/5 Insgesamt 5 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/dbkaplun/github-markdown-outline-extension
Hilfeseite URL https://github.com/dbkaplun/github-markdown-outline-extension/issues
Unterstützte Sprachen 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"
    ]
}