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 |
官方網址 | 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 |
電子郵箱 | [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 } ] } |