Trello Short URL
This extension provides a button on a trello card to copy the short url to the clipboard.
Hvad er Trello Short URL?
Trello Short URL er en Chrome-udvidelse udviklet af Nick Thompson, og dens hovedfunktion er "This extension provides a button on a trello card to copy the short url to the clipboard.".
Udvidelsesskærmbilleder
Download Trello Short URL-udvidelses-CRX-fil
Download Trello Short URL-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Trello Short URL |
ID | kknbnjdfmclblpjkedhjfbbkgjomciga |
Officiel URL | https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga |
Beskrivelse | This extension provides a button on a trello card to copy the short url to the clipboard. |
Filstørrelse | 22.16 KB |
Antal Installationer | 339 |
Nuværende Version | 0.3 |
Senest Opdateret | 2015-02-02 |
Udgivelsesdato | 2015-02-02 |
Bedømmelse | 4.40/5 Samlet 5 Bedømmelser |
Udvikler | Nick Thompson |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/njt1982/TrelloShortUrl |
Hjælpeside-URL | https://github.com/njt1982/TrelloShortUrl/issues |
Understøttede Sprog | 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" } } |