HackMD Enhance

Shortcuts and Tools for CodiMD

HackMD Enhanceคืออะไร?

HackMD Enhance เป็นส่วนขยายของ Chrome ที่พัฒนาโดย simonramstedt และคุณลักษณะหลักของมันคือ "Shortcuts and Tools for CodiMD"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HackMD Enhance

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}