HackMD Enhance
Shortcuts and Tools for CodiMD
Qu'est-ce que HackMD Enhance ?
HackMD Enhance est une extension Chrome développée par simonramstedt, et sa fonction principale est "Shortcuts and Tools for CodiMD".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HackMD Enhance
Téléchargez les fichiers d'extension HackMD Enhance au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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)
Informations de Base sur l'Extension
Nom | HackMD Enhance |
ID | eekpbjkhajjmlakbeiaficniogefmndn |
URL Officiel | https://chromewebstore.google.com/detail/hackmd-enhance/eekpbjkhajjmlakbeiaficniogefmndn |
Description | Shortcuts and Tools for CodiMD |
Taille du Fichier | 223 KB |
Nombre d'Installations | 33 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2019-03-29 |
Date de Publication | 2019-03-29 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | simonramstedt |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/rmst/hackmd-enhance |
URL de la Page d'Aide | https://github.com/rmst/hackmd-enhance |
Langues Prises en Charge | 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" ] } ] } |