HackMD Enhance
Shortcuts and Tools for CodiMD
Wat is HackMD Enhance?
HackMD Enhance is een Chrome-extensie ontwikkeld door simonramstedt, en de belangrijkste functie is "Shortcuts and Tools for CodiMD".
Extensie Screenshots
Download het CRX-bestand van de extensie HackMD Enhance
Download HackMD Enhance-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        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)                     Basisinformatie over de Extensie
| Naam |   |  
| ID | eekpbjkhajjmlakbeiaficniogefmndn | 
| Officiële URL | https://chromewebstore.google.com/detail/hackmd-enhance/eekpbjkhajjmlakbeiaficniogefmndn | 
| Beschrijving | Shortcuts and Tools for CodiMD | 
| Bestandsgrootte | 223 KB | 
| Aantal Installaties | 33 | 
| Huidige Versie | 0.0.3 | 
| Laatst Bijgewerkt | 2019-03-29 | 
| Publicatiedatum | 2019-03-29 | 
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen | 
| Ontwikkelaar | simonramstedt | 
| [email protected] | |
| Betalingswijze | free | 
| Extensiewebsite | https://github.com/rmst/hackmd-enhance | 
| Help Pagina-URL | https://github.com/rmst/hackmd-enhance | 
| Ondersteunde Talen | 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"
            ]
        }
    ]
}  |  |