Trello Local File Link Extension

Insert a local file link into Trello cards

Apa itu Trello Local File Link Extension?

Trello Local File Link Extension adalah ekstensi Chrome yang dikembangkan oleh Michael Pugliese, dan fitur utamanya adalah "Insert a local file link into Trello cards".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Trello Local File Link Extension

Unduh file ekstensi Trello Local File Link Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Trello Local File Link Extension Trello Local File Link Extension
ID ggdkhkhjncfidijlnampbifmddolhgbd
URL Resmi https://chromewebstore.google.com/detail/trello-local-file-link-ex/ggdkhkhjncfidijlnampbifmddolhgbd
Deskripsi Insert a local file link into Trello cards
Ukuran File 18.44 KB
Jumlah Instalasi 322
Versi Saat Ini 1.1
Terakhir Diperbarui 2019-10-25
Tanggal Publikasi 2019-10-24
Penilaian 2.00/5 Total 2 Penilaian
Pengembang Michael Pugliese
Tipe Pembayaran free
Situs Ekstensi https://github.com/mpugger/trello-local-file-link-ext
Bahasa yang Didukung 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
        }
    ]
}