Markdown Outline for GitHub
It will show you the outline of the markdown file on GitHub.
Apa itu Markdown Outline for GitHub?
Markdown Outline for GitHub adalah ekstensi Chrome yang dikembangkan oleh mitsuruog, dan fitur utamanya adalah "It will show you the outline of the markdown file on GitHub.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Markdown Outline for GitHub
Unduh file ekstensi Markdown Outline for GitHub dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
It will show you the outline of the markdown file on GitHub and Gist.
Informasi Dasar Ekstensi
Nama | Markdown Outline for GitHub |
ID | nkbceicafhlobddjmlflmhbloffdekcd |
URL Resmi | https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd |
Deskripsi | It will show you the outline of the markdown file on GitHub. |
Ukuran File | 31.85 KB |
Jumlah Instalasi | 47 |
Versi Saat Ini | 0.1.3 |
Terakhir Diperbarui | 2020-09-12 |
Tanggal Publikasi | 2020-06-02 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | mitsuruog |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/mitsuruog/markdown-outline-for-github |
URL Halaman Bantuan | https://github.com/mitsuruog/markdown-outline-for-github/issues |
Bahasa yang Didukung | 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 } ] } |