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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}