Trello Local File Link Extension

Insert a local file link into Trello cards

Wat is Trello Local File Link Extension?

Trello Local File Link Extension is een Chrome-extensie ontwikkeld door Michael Pugliese, en de belangrijkste functie is "Insert a local file link into Trello cards".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Trello Local File Link Extension

Download Trello Local File Link Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Trello Local File Link Extension Trello Local File Link Extension
ID ggdkhkhjncfidijlnampbifmddolhgbd
Officiële URL https://chromewebstore.google.com/detail/trello-local-file-link-ex/ggdkhkhjncfidijlnampbifmddolhgbd
Beschrijving Insert a local file link into Trello cards
Bestandsgrootte 18.44 KB
Aantal Installaties 322
Huidige Versie 1.1
Laatst Bijgewerkt 2019-10-25
Publicatiedatum 2019-10-24
Beoordeling 2.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Michael Pugliese
Betalingswijze free
Extensiewebsite https://github.com/mpugger/trello-local-file-link-ext
Ondersteunde Talen 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
        }
    ]
}