Dynalist link helper

Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…

ما هو Dynalist link helper؟

Dynalist link helper هو إضافة Chrome تم تطويرها بواسطة yochees، والميزة الرئيسية لها هي "Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…".

تحميل ملف CRX للإضافة Dynalist link helper

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

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

                        Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard.

Example: 
Launching extension in a page with title "My page" and URL "www.mypage.com" will generate string [My page](www.mypage.com) ready to be pasted.

For easier use - set keyboard shortchut at menu > more tools > extensions > keyboard shortcuts.                    

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

الاسم Dynalist link helper Dynalist link helper
ID npfkmhfnnflmldbgkbkkjopapnfgmdca
عنوان URL الرسمي https://chromewebstore.google.com/detail/dynalist-link-helper/npfkmhfnnflmldbgkbkkjopapnfgmdca
الوصف Extension converts active tab title and URL to a Dynalist markdown, then copies it to clipboard. Example: Launching extension in…
حجم الملف 117 KB
عدد التثبيتات 25
النسخة الحالية 0.1
آخر تحديث 2017-11-21
تاريخ النشر 2017-11-21
تقييم 5.00/5 مجموع تقييمات 1
المطور yochees
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dynalist link helper",
    "version": "0.1",
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.js",
                "content.js"
            ]
        }
    ]
}