Trello Local File Link Extension

Insert a local file link into Trello cards

ما هو Trello Local File Link Extension؟

Trello Local File Link Extension هو إضافة Chrome تم تطويرها بواسطة Michael Pugliese، والميزة الرئيسية لها هي "Insert a local file link into Trello cards".

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

screenshot

تحميل ملف CRX للإضافة Trello Local File Link Extension

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

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

                        Works with Trello (https://www.trello.com).

Allows you to easily paste a local file location into a markdown enabled editable field.

All you have to do is a copy a file location (eg. C:/dir/file.txt), right click your target card's description or comment input and select 'Paste Local File Link' from the context menu.                    

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

الاسم Trello Local File Link Extension Trello Local File Link Extension
ID ggdkhkhjncfidijlnampbifmddolhgbd
عنوان URL الرسمي https://chromewebstore.google.com/detail/trello-local-file-link-ex/ggdkhkhjncfidijlnampbifmddolhgbd
الوصف Insert a local file link into Trello cards
حجم الملف 18.44 KB
عدد التثبيتات 322
النسخة الحالية 1.1
آخر تحديث 2019-10-25
تاريخ النشر 2019-10-24
تقييم 2.00/5 مجموع تقييمات 2
المطور Michael Pugliese
نوع الدفع free
موقع الإضافة https://github.com/mpugger/trello-local-file-link-ext
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello Local File Link Extension",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Insert a local file link into Trello cards",
    "permissions": [
        "contextMenus",
        "clipboardRead"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}