HackMD Enhance

Shortcuts and Tools for CodiMD

Apa itu HackMD Enhance?

HackMD Enhance adalah ekstensi Chrome yang dikembangkan oleh simonramstedt, dan fitur utamanya adalah "Shortcuts and Tools for CodiMD".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi HackMD Enhance

Unduh file ekstensi HackMD Enhance dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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)                    

Informasi Dasar Ekstensi

Nama HackMD Enhance HackMD Enhance
ID eekpbjkhajjmlakbeiaficniogefmndn
URL Resmi https://chromewebstore.google.com/detail/hackmd-enhance/eekpbjkhajjmlakbeiaficniogefmndn
Deskripsi Shortcuts and Tools for CodiMD
Ukuran File 223 KB
Jumlah Instalasi 33
Versi Saat Ini 0.0.3
Terakhir Diperbarui 2019-03-29
Tanggal Publikasi 2019-03-29
Penilaian 5.00/5 Total 2 Penilaian
Pengembang simonramstedt
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/rmst/hackmd-enhance
URL Halaman Bantuan https://github.com/rmst/hackmd-enhance
Bahasa yang Didukung 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"
            ]
        }
    ]
}