HackMD Enhance
Shortcuts and Tools for CodiMD
¿Qué es HackMD Enhance?
HackMD Enhance es una extensión de Chrome desarrollada por simonramstedt, y su función principal es "Shortcuts and Tools for CodiMD".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión HackMD Enhance
Descarga archivos de extensión HackMD Enhance 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
Open a document: - press alt + o - type the name of the doc (non-existing docs will be created) - press enter (or shift+enter to open in a new tab) Link to a document: - press alt + l (you can change the shortcut in the options) - type the name of the doc (non-existing docs will be created) - press enter (or shift+enter to open the linked document in a new tab) Changes in version 0.0.2: - Now available for all websites (e.g. self-hosted CodiMD instances) - I recommend to let the extension only run on selected websites - Automatically creates title for new documents - Automatically creates backlink to previous document (can be disabled)
Información Básica de la Extensión
Nombre | HackMD Enhance |
ID | eekpbjkhajjmlakbeiaficniogefmndn |
URL Oficial | https://chromewebstore.google.com/detail/hackmd-enhance/eekpbjkhajjmlakbeiaficniogefmndn |
Descripción | Shortcuts and Tools for CodiMD |
Tamaño del Archivo | 223 KB |
Cantidad de Instalaciones | 33 |
Versión Actual | 0.0.3 |
Última Actualización | 2019-03-29 |
Fecha de Publicación | 2019-03-29 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | simonramstedt |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/rmst/hackmd-enhance |
URL de la Página de Ayuda | https://github.com/rmst/hackmd-enhance |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HackMD Enhance", "version": "0.0.3", "manifest_version": 2, "description": "Shortcuts and Tools for CodiMD", "homepage_url": "https:\/\/github.com\/rmst\/hackmd-enhance", "background": { "scripts": [ "background.js" ], "persistent": false }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "tabs", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "jquery-1.12.4.js", "jquery-ui.js", "inject.js" ], "css": [ "jquery-ui.css" ] } ] } |