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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
        }
    ]
}