Trello Short URL
This extension provides a button on a trello card to copy the short url to the clipboard.
Vad är Trello Short URL?
Trello Short URL är en Chrome-tillägg utvecklad av Nick Thompson, och dess huvudfunktion är "This extension provides a button on a trello card to copy the short url to the clipboard.".
Tilläggsskärmbilder
Ladda ner Trello Short URL-förlängningens CRX-fil
Ladda ner Trello Short URL-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
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
Grundläggande Information om Tillägg
Namn | Trello Short URL |
ID | kknbnjdfmclblpjkedhjfbbkgjomciga |
Officiell webbadress | https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga |
Beskrivning | This extension provides a button on a trello card to copy the short url to the clipboard. |
Filstorlek | 22.16 KB |
Antal Installationer | 339 |
Aktuell Version | 0.3 |
Senast Uppdaterad | 2015-02-02 |
Publiceringsdatum | 2015-02-02 |
Betyg | 4.40/5 Totalt 5 Betyg |
Utvecklare | Nick Thompson |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/njt1982/TrelloShortUrl |
Hjälpsida URL | https://github.com/njt1982/TrelloShortUrl/issues |
Stödda Språk | 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" } } |