Github Readme Markdown
So, Now don't worry about remembring markup, coz it's right there.
Что такое Github Readme Markdown?
Github Readme Markdown - это расширение Chrome, разработанное anantrungta1999, и его основная функция - "So, Now don't worry about remembring markup, coz it's right there.".
Снимки экрана расширения
Скачать файл CRX расширения Github Readme Markdown
Скачайте файлы расширений 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 |
Электронная почта | [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" } } |