HackMD Enhance

Shortcuts and Tools for CodiMD

O que é HackMD Enhance?

HackMD Enhance é uma extensão do Chrome desenvolvida por simonramstedt, e sua principal característica é "Shortcuts and Tools for CodiMD".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão HackMD Enhance

Baixe arquivos de extensão HackMD Enhance no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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)                    

Informações Básicas da Extensão

Nome HackMD Enhance HackMD Enhance
ID eekpbjkhajjmlakbeiaficniogefmndn
URL Oficial https://chromewebstore.google.com/detail/hackmd-enhance/eekpbjkhajjmlakbeiaficniogefmndn
Descrição Shortcuts and Tools for CodiMD
Tamanho do Arquivo 223 KB
Contagem de Instalações 33
Versão Atual 0.0.3
Última Atualização 2019-03-29
Data de Publicação 2019-03-29
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor simonramstedt
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/rmst/hackmd-enhance
URL da Página de Ajuda https://github.com/rmst/hackmd-enhance
Idiomas Suportados 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"
            ]
        }
    ]
}