Trello Local File Link Extension

Insert a local file link into Trello cards

Trello Local File Link Extension là gì?

Trello Local File Link Extension là một tiện ích mở rộng Chrome được phát triển bởi Michael Pugliese, và tính năng chính của nó là "Insert a local file link into Trello cards".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trello Local File Link Extension

Tải xuống các tệp mở rộng Trello Local File Link Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello Local File Link Extension Trello Local File Link Extension
ID ggdkhkhjncfidijlnampbifmddolhgbd
URL Chính Thức https://chromewebstore.google.com/detail/trello-local-file-link-ex/ggdkhkhjncfidijlnampbifmddolhgbd
Mô tả Insert a local file link into Trello cards
Kích Thước Tệp 18.44 KB
Số Lần Cài Đặt 322
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-10-25
Ngày Phát Hành 2019-10-24
Đánh Giá 2.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Michael Pugliese
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mpugger/trello-local-file-link-ext
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}