Markdown Outline for GitHub
It will show you the outline of the markdown file on GitHub.
Markdown Outline for GitHubとは何ですか?
Markdown Outline for GitHubはmitsuruogによって開発されたChromeの拡張機能で、その主な機能は「It will show you the outline of the markdown file on GitHub.」です。
拡張機能のスクリーンショット
Markdown Outline for GitHub拡張機能のCRXファイルをダウンロード
Markdown Outline for GitHub拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
It will show you the outline of the markdown file on GitHub and Gist.
拡張機能の基本情報
名前 | Markdown Outline for GitHub |
ID | nkbceicafhlobddjmlflmhbloffdekcd |
公式URL | https://chromewebstore.google.com/detail/markdown-outline-for-gith/nkbceicafhlobddjmlflmhbloffdekcd |
説明 | It will show you the outline of the markdown file on GitHub. |
ファイルサイズ | 31.85 KB |
インストール数 | 47 |
現在のバージョン | 0.1.3 |
最終更新日 | 2020-09-12 |
公開日 | 2020-06-02 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | mitsuruog |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/mitsuruog/markdown-outline-for-github |
ヘルプページのURL | https://github.com/mitsuruog/markdown-outline-for-github/issues |
対応言語 | 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 } ] } |