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]
拡張機能の基本情報
名前 | Github Readme Markdown |
ID | paacehodnnofnmhogoclomamladkpabg |
公式URL | 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 |
Eメール | [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" } } |