Markdown Outline for GitHub
It will show you the outline of the markdown file on GitHub.
Was ist Markdown Outline for GitHub?
Markdown Outline for GitHub ist eine Chrome-Erweiterung, die von mitsuruog entwickelt wurde, und ihr Hauptmerkmal ist "It will show you the outline of the markdown file on GitHub.".
Erweiterungsscreenshots
Markdown Outline for GitHub-Erweiterungs-CRX-Datei herunterladen
Laden Sie Markdown Outline for GitHub-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
It will show you the outline of the markdown file on GitHub and Gist.
Grundlegende Informationen zur Erweiterung
Name | Markdown Outline for GitHub |
ID | nkbceicafhlobddjmlflmhbloffdekcd |
Offizielle URL | https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd |
Beschreibung | It will show you the outline of the markdown file on GitHub. |
Dateigröße | 31.85 KB |
Installationsanzahl | 47 |
Aktuelle Version | 0.1.3 |
Letztes Update | 2020-09-12 |
Veröffentlichungsdatum | 2020-06-02 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | mitsuruog |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/mitsuruog/markdown-outline-for-github |
Hilfeseite URL | https://github.com/mitsuruog/markdown-outline-for-github/issues |
Unterstützte Sprachen | 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 } ] } |