Trello Local File Link Extension
Insert a local file link into Trello cards
Qu'est-ce que Trello Local File Link Extension ?
Trello Local File Link Extension est une extension Chrome développée par Michael Pugliese, et sa fonction principale est "Insert a local file link into Trello cards".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Trello Local File Link Extension
Téléchargez les fichiers d'extension Trello Local File Link Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Trello Local File Link Extension |
ID | ggdkhkhjncfidijlnampbifmddolhgbd |
URL Officiel | https://chromewebstore.google.com/detail/trello-local-file-link-ex/ggdkhkhjncfidijlnampbifmddolhgbd |
Description | Insert a local file link into Trello cards |
Taille du Fichier | 18.44 KB |
Nombre d'Installations | 322 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2019-10-25 |
Date de Publication | 2019-10-24 |
Évaluation | 2.00/5 Total 2 Évaluations |
Développeur | Michael Pugliese |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mpugger/trello-local-file-link-ext |
Langues Prises en Charge | 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 } ] } |