Github Readme Markdown
So, Now don't worry about remembring markup, coz it's right there.
什麼是Github Readme Markdown?
Github Readme Markdown是由anantrungta1999開發的Chrome擴展程式,該擴展的主要功能是“So, Now don't worry about remembring markup, coz it's right there.”。
擴展截圖
下載Github Readme Markdown擴展crx文件
下載Github Readme Markdown擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
:smiley: It is a simple markdown for readme.md files at instant. This extension is specially for Github users to easily write their most important part - "The Documentation", very easily, without searching for markdown at other pages.
How to use?
1. Just Add it to your browser
2. That's it!!
Whenever editing a Readme.md file, this extra option will show automatically. [See picture] 擴展基本資訊
| 名稱 | |
| ID | paacehodnnofnmhogoclomamladkpabg |
| 官方網址 | https://chromewebstore.google.com/detail/github-readme-markdown/paacehodnnofnmhogoclomamladkpabg |
| 簡介 | So, Now don't worry about remembring markup, coz it's right there. |
| 檔案大小 | 14.59 KB |
| 安裝次數 | 320 |
| 目前版本 | 1.5 |
| 更新時間 | 2019-07-18 |
| 上架時間 | 2019-07-18 |
| 評分 | 4.38/5 共 13 次評分 |
| 開發者 | anantrungta1999 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/Anant016/github-readme-markdown-chrome-extension |
| 說明頁面URL | https://github.com/Anant016/github-readme-markdown-chrome-extension |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"author": "https:\/\/github.com\/Anant016",
"name": "Github Readme Markdown",
"icons": {
"16": "git16.png",
"48": "git48.png",
"128": "git128.png"
},
"version": "1.5",
"description": "So, Now don't worry about remembring markup, coz it's right there.",
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*\/new*.md*",
"https:\/\/github.com\/*\/edit*.md*",
"https:\/\/github.com\/*\/new*.MD*",
"https:\/\/github.com\/*\/edit*.MD*",
"https:\/\/github.com\/*\/edit*readme",
"https:\/\/github.com\/*\/new*readme"
],
"js": [
"showoption.js"
],
"run_at": "document_end"
}
],
"browser_action": {
"default_icon": "git16.png",
"default_popup": "popup.html"
}
} | |