HackMD Enhance
Shortcuts and Tools for CodiMD
Was ist HackMD Enhance?
HackMD Enhance ist eine Chrome-Erweiterung, die von simonramstedt entwickelt wurde, und ihr Hauptmerkmal ist "Shortcuts and Tools for CodiMD".
Erweiterungsscreenshots
HackMD Enhance-Erweiterungs-CRX-Datei herunterladen
Laden Sie HackMD Enhance-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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)
Grundlegende Informationen zur Erweiterung
Name | HackMD Enhance |
ID | eekpbjkhajjmlakbeiaficniogefmndn |
Offizielle URL | https://chromewebstore.google.com/detail/hackmd-enhance/eekpbjkhajjmlakbeiaficniogefmndn |
Beschreibung | Shortcuts and Tools for CodiMD |
Dateigröße | 223 KB |
Installationsanzahl | 33 |
Aktuelle Version | 0.0.3 |
Letztes Update | 2019-03-29 |
Veröffentlichungsdatum | 2019-03-29 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | simonramstedt |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/rmst/hackmd-enhance |
Hilfeseite URL | https://github.com/rmst/hackmd-enhance |
Unterstützte Sprachen | 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" ] } ] } |