Gist Markdown Preview
helps to preview the markdown while creating a markdown gist
Что такое Gist Markdown Preview?
Gist Markdown Preview - это расширение Chrome, разработанное https://blog.revathskumar.com, и его основная функция - "helps to preview the markdown while creating a markdown gist".
Снимки экрана расширения
Скачать файл CRX расширения Gist Markdown Preview
Скачайте файлы расширений Gist Markdown Preview в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The option is visible only when you choose the filetype as markdown or your filename ends with .md
* updated for latest changes in gist.github.com design
CHANGES on 2017/04/12
* updates to latest github changes
* Removed the css from loading and breaking http://gist.github.com
* Fixes the issue with appearing multiple preview buttons on multiple markdown files
CHANGES on 2018/01/03
* updates to latest github changes
CHANGES on 2018/01/20
* Support for Github flavoured markdown Основная информация о расширении
| Название | |
| ID | icgfmklfpokeihbnnjjdpnjndickgpkh |
| Официальный URL | https://chromewebstore.google.com/detail/gist-markdown-preview/icgfmklfpokeihbnnjjdpnjndickgpkh |
| Описание | helps to preview the markdown while creating a markdown gist |
| Размер файла | 139 KB |
| Количество установок | 445 |
| Текущая Версия | 2.0.3 |
| Последнее Обновление | 2018-01-19 |
| Дата публикации | 2018-01-19 |
| Рейтинг | 4.00/5 Всего 6 оценок |
| Разработчик | https://blog.revathskumar.com |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/revathskumar/gist-markdown-preview |
| URL страницы помощи | https://github.com/revathskumar/gist-markdown-preview/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Gist Markdown Preview",
"version": "2.0.3",
"description": "helps to preview the markdown while creating a markdown gist",
"manifest_version": 2,
"icons": {
"16": "img\/gist16.png",
"48": "img\/gist48.png",
"128": "img\/gist128.png"
},
"homepage_url": "https:\/\/github.com\/revathskumar\/gist-markdown-preview",
"content_scripts": [
{
"matches": [
"https:\/\/gist.github.com\/",
"https:\/\/gist.github.com\/*\/*\/edit"
],
"js": [
"js\/marked.js",
"gist_markdown_preview.js"
],
"run_at": "document_start"
}
],
"permissions": [
"https:\/\/gist.github.com\/"
]
} | |