Gist Markdown Preview
helps to preview the markdown while creating a markdown gist
¿Qué es Gist Markdown Preview?
Gist Markdown Preview es una extensión de Chrome desarrollada por https://blog.revathskumar.com, y su función principal es "helps to preview the markdown while creating a markdown gist".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Gist Markdown Preview
Descarga archivos de extensión Gist Markdown Preview en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Gist Markdown Preview |
ID | icgfmklfpokeihbnnjjdpnjndickgpkh |
URL Oficial | https://chromewebstore.google.com/detail/gist-markdown-preview/icgfmklfpokeihbnnjjdpnjndickgpkh |
Descripción | helps to preview the markdown while creating a markdown gist |
Tamaño del Archivo | 139 KB |
Cantidad de Instalaciones | 445 |
Versión Actual | 2.0.3 |
Última Actualización | 2018-01-19 |
Fecha de Publicación | 2018-01-19 |
Calificación | 4.00/5 Total de 6 Calificaciones |
Desarrollador | https://blog.revathskumar.com |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/revathskumar/gist-markdown-preview |
URL de la Página de Ayuda | https://github.com/revathskumar/gist-markdown-preview/issues |
Idiomas Soportados | 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\/" ] } |