HackMD Enhance

Shortcuts and Tools for CodiMD

HackMD Enhance là gì?

HackMD Enhance là một tiện ích mở rộng Chrome được phát triển bởi simonramstedt, và tính năng chính của nó là "Shortcuts and Tools for CodiMD".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng HackMD Enhance

Tải xuống các tệp mở rộng HackMD Enhance dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HackMD Enhance HackMD Enhance
ID eekpbjkhajjmlakbeiaficniogefmndn
URL Chính Thức https://chromewebstore.google.com/detail/hackmd-enhance/eekpbjkhajjmlakbeiaficniogefmndn
Mô tả Shortcuts and Tools for CodiMD
Kích Thước Tệp 223 KB
Số Lần Cài Đặt 33
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2019-03-29
Ngày Phát Hành 2019-03-29
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển simonramstedt
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rmst/hackmd-enhance
URL Trang Trợ Giúp https://github.com/rmst/hackmd-enhance
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}