HackMD Enhance

Shortcuts and Tools for CodiMD

HackMD Enhanceとは何ですか?

HackMD Enhanceはsimonramstedtによって開発されたChromeの拡張機能で、その主な機能は「Shortcuts and Tools for CodiMD」です。

拡張機能のスクリーンショット

screenshot

HackMD Enhance拡張機能のCRXファイルをダウンロード

HackMD Enhance拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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)                    

拡張機能の基本情報

名前 HackMD Enhance HackMD Enhance
ID eekpbjkhajjmlakbeiaficniogefmndn
公式URL https://chromewebstore.google.com/detail/hackmd-enhance/eekpbjkhajjmlakbeiaficniogefmndn
説明 Shortcuts and Tools for CodiMD
ファイルサイズ 223 KB
インストール数 33
現在のバージョン 0.0.3
最終更新日 2019-03-29
公開日 2019-03-29
評価 5.00/5 合計 2 レビュー
開発者 simonramstedt
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/rmst/hackmd-enhance
ヘルプページのURL https://github.com/rmst/hackmd-enhance
対応言語 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"
            ]
        }
    ]
}