Github Readme Markdown
So, Now don't worry about remembring markup, coz it's right there.
¿Qué es Github Readme Markdown?
Github Readme Markdown es una extensión de Chrome desarrollada por anantrungta1999, y su función principal es "So, Now don't worry about remembring markup, coz it's right there.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Github Readme Markdown
Descarga archivos de extensión Github Readme Markdown 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
: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]
Información Básica de la Extensión
Nombre | Github Readme Markdown |
ID | paacehodnnofnmhogoclomamladkpabg |
URL Oficial | https://chromewebstore.google.com/detail/github-readme-markdown/paacehodnnofnmhogoclomamladkpabg |
Descripción | So, Now don't worry about remembring markup, coz it's right there. |
Tamaño del Archivo | 14.59 KB |
Cantidad de Instalaciones | 320 |
Versión Actual | 1.5 |
Última Actualización | 2019-07-18 |
Fecha de Publicación | 2019-07-18 |
Calificación | 4.38/5 Total de 13 Calificaciones |
Desarrollador | anantrungta1999 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Anant016/github-readme-markdown-chrome-extension |
URL de la Página de Ayuda | https://github.com/Anant016/github-readme-markdown-chrome-extension |
Idiomas Soportados | 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" } } |