Trello Short URL
This extension provides a button on a trello card to copy the short url to the clipboard.
Was ist Trello Short URL?
Trello Short URL ist eine Chrome-Erweiterung, die von Nick Thompson entwickelt wurde, und ihr Hauptmerkmal ist "This extension provides a button on a trello card to copy the short url to the clipboard.".
Erweiterungsscreenshots
Trello Short URL-Erweiterungs-CRX-Datei herunterladen
Laden Sie Trello Short URL-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
Adds a button to Trello cards to copy the short URL straight to the clipboard. Please report any issues into the GitHub Repo - https://github.com/njt1982/TrelloShortUrl
Grundlegende Informationen zur Erweiterung
Name | Trello Short URL |
ID | kknbnjdfmclblpjkedhjfbbkgjomciga |
Offizielle URL | https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga |
Beschreibung | This extension provides a button on a trello card to copy the short url to the clipboard. |
Dateigröße | 22.16 KB |
Installationsanzahl | 339 |
Aktuelle Version | 0.3 |
Letztes Update | 2015-02-02 |
Veröffentlichungsdatum | 2015-02-02 |
Bewertung | 4.40/5 Insgesamt 5 Bewertungen |
Entwickler | Nick Thompson |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/njt1982/TrelloShortUrl |
Hilfeseite URL | https://github.com/njt1982/TrelloShortUrl/issues |
Unterstützte Sprachen | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trello Short URL", "description": "This extension provides a button on a trello card to copy the short url to the clipboard.", "version": "0.3", "content_scripts": [ { "matches": [ "https:\/\/trello.com\/*" ], "js": [ "TrelloShortUrl.js" ] } ], "permissions": [ "https:\/\/trello.com\/", "clipboardWrite" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |