Trello Local File Link Extension

Insert a local file link into Trello cards

What is Trello Local File Link Extension?

Trello Local File Link Extension is a Chrome extension developed by Michael Pugliese, and its main feature is "Insert a local file link into Trello cards".

Extension Screenshots

screenshot

Download Trello Local File Link Extension Extension CRX File

Download Trello Local File Link Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Trello Local File Link Extension Trello Local File Link Extension
ID ggdkhkhjncfidijlnampbifmddolhgbd
Official URL https://chromewebstore.google.com/detail/trello-local-file-link-ex/ggdkhkhjncfidijlnampbifmddolhgbd
Description Insert a local file link into Trello cards
File Size 18.44 KB
Installation Count 322
Current Version 1.1
Last Updated 2019-10-25
Publish Date 2019-10-24
Rating 2.00/5 Total 2 Ratings
Developer Michael Pugliese
Payment Type free
Extension Website https://github.com/mpugger/trello-local-file-link-ext
Supported Languages 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
        }
    ]
}