HackMD Enhance
Shortcuts and Tools for CodiMD
Cos'è HackMD Enhance?
HackMD Enhance è un'estensione di Chrome sviluppata da simonramstedt, e la sua funzione principale è "Shortcuts and Tools for CodiMD".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HackMD Enhance
Scarica i file di estensione HackMD Enhance in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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) Informazioni di Base sull'Estensione
| Nome | |
| ID | eekpbjkhajjmlakbeiaficniogefmndn |
| URL Ufficiale | https://chromewebstore.google.com/detail/hackmd-enhance/eekpbjkhajjmlakbeiaficniogefmndn |
| Descrizione | Shortcuts and Tools for CodiMD |
| Dimensione del File | 223 KB |
| Conteggio Installazioni | 33 |
| Versione Corrente | 0.0.3 |
| Ultimo Aggiornamento | 2019-03-29 |
| Data di Pubblicazione | 2019-03-29 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | simonramstedt |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/rmst/hackmd-enhance |
| URL della Pagina di Aiuto | https://github.com/rmst/hackmd-enhance |
| Lingue Supportate | 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"
]
}
]
} | |