Trello Local File Link Extension

Insert a local file link into Trello cards

Was ist Trello Local File Link Extension?

Trello Local File Link Extension ist eine Chrome-Erweiterung, die von Michael Pugliese entwickelt wurde, und ihr Hauptmerkmal ist "Insert a local file link into Trello cards".

Erweiterungsscreenshots

screenshot

Trello Local File Link Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Trello Local File Link Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Trello Local File Link Extension Trello Local File Link Extension
ID ggdkhkhjncfidijlnampbifmddolhgbd
Offizielle URL https://chromewebstore.google.com/detail/trello-local-file-link-ex/ggdkhkhjncfidijlnampbifmddolhgbd
Beschreibung Insert a local file link into Trello cards
Dateigröße 18.44 KB
Installationsanzahl 322
Aktuelle Version 1.1
Letztes Update 2019-10-25
Veröffentlichungsdatum 2019-10-24
Bewertung 2.00/5 Insgesamt 2 Bewertungen
Entwickler Michael Pugliese
Zahlungsart free
Erweiterungswebsite https://github.com/mpugger/trello-local-file-link-ext
Unterstützte Sprachen 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
        }
    ]
}