Trello Local File Link Extension

Insert a local file link into Trello cards

Vad är Trello Local File Link Extension?

Trello Local File Link Extension är en Chrome-tillägg utvecklad av Michael Pugliese, och dess huvudfunktion är "Insert a local file link into Trello cards".

Tilläggsskärmbilder

screenshot

Ladda ner Trello Local File Link Extension-förlängningens CRX-fil

Ladda ner Trello Local File Link Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Trello Local File Link Extension Trello Local File Link Extension
ID ggdkhkhjncfidijlnampbifmddolhgbd
Officiell webbadress https://chromewebstore.google.com/detail/trello-local-file-link-ex/ggdkhkhjncfidijlnampbifmddolhgbd
Beskrivning Insert a local file link into Trello cards
Filstorlek 18.44 KB
Antal Installationer 322
Aktuell Version 1.1
Senast Uppdaterad 2019-10-25
Publiceringsdatum 2019-10-24
Betyg 2.00/5 Totalt 2 Betyg
Utvecklare Michael Pugliese
Betalningssätt free
Tilläggswebbplats https://github.com/mpugger/trello-local-file-link-ext
Stödda Språk 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
        }
    ]
}