Link-Md

Create a markdown link of the current page with quoted text.

ما هو Link-Md؟

Link-Md هو إضافة Chrome تم تطويرها بواسطة Jade Ohlhauser، والميزة الرئيسية لها هي "Create a markdown link of the current page with quoted text.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Link-Md

قم بتنزيل ملفات الامتداد Link-Md بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Click the plugin icon or use the hotkey to put a link in markdown format of the active tab into your clipboard. If you have text selected it will include it as a quote. I made it for referencing websites in my favorite note app, Logseq.                    

معلومات أساسية عن التمديد

الاسم Link-Md Link-Md
ID nfjkoojhgklbbnlonpdplbdjkgoemgod
عنوان URL الرسمي https://chromewebstore.google.com/detail/link-md/nfjkoojhgklbbnlonpdplbdjkgoemgod
الوصف Create a markdown link of the current page with quoted text.
حجم الملف 11.76 KB
عدد التثبيتات 302
النسخة الحالية 1.3
آخر تحديث 2022-11-17
تاريخ النشر 2021-12-07
تقييم 5.00/5 مجموع تقييمات 7
المطور Jade Ohlhauser
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/jadeohl/linkmd
عنوان صفحة المساعدة https://github.com/jadeohl/linkmd
عنوان صفحة سياسة الخصوصية https://github.com/jadeohl/linkmd/blob/main/privacy-policy.md
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Link-Md",
    "description": "Create a markdown link of the current page with quoted text.",
    "version": "1.3",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "64": "icon-64.png",
            "128": "icon-128.png"
        }
    },
    "icons": {
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "scripting",
        "clipboardWrite"
    ],
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+C"
            },
            "description": "Copy quote link to clipboard."
        }
    }
}