Markdown Outline for GitHub
It will show you the outline of the markdown file on GitHub.
Qu'est-ce que Markdown Outline for GitHub ?
Markdown Outline for GitHub est une extension Chrome développée par mitsuruog, et sa fonction principale est "It will show you the outline of the markdown file on GitHub.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Markdown Outline for GitHub
Téléchargez les fichiers d'extension Markdown Outline for GitHub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
It will show you the outline of the markdown file on GitHub and Gist.
Informations de Base sur l'Extension
Nom | Markdown Outline for GitHub |
ID | nkbceicafhlobddjmlflmhbloffdekcd |
URL Officiel | https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd |
Description | It will show you the outline of the markdown file on GitHub. |
Taille du Fichier | 31.85 KB |
Nombre d'Installations | 47 |
Version Actuelle | 0.1.3 |
Dernière Mise à Jour | 2020-09-12 |
Date de Publication | 2020-06-02 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | mitsuruog |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mitsuruog/markdown-outline-for-github |
URL de la Page d'Aide | https://github.com/mitsuruog/markdown-outline-for-github/issues |
Langues Prises en Charge | 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 } ] } |