Trello Short URL
This extension provides a button on a trello card to copy the short url to the clipboard.
Apa itu Trello Short URL?
Trello Short URL adalah ekstensi Chrome yang dikembangkan oleh Nick Thompson, dan fitur utamanya adalah "This extension provides a button on a trello card to copy the short url to the clipboard.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Trello Short URL
Unduh file ekstensi Trello Short URL dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Trello Short URL |
ID | kknbnjdfmclblpjkedhjfbbkgjomciga |
URL Resmi | https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga |
Deskripsi | This extension provides a button on a trello card to copy the short url to the clipboard. |
Ukuran File | 22.16 KB |
Jumlah Instalasi | 339 |
Versi Saat Ini | 0.3 |
Terakhir Diperbarui | 2015-02-02 |
Tanggal Publikasi | 2015-02-02 |
Penilaian | 4.40/5 Total 5 Penilaian |
Pengembang | Nick Thompson |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/njt1982/TrelloShortUrl |
URL Halaman Bantuan | https://github.com/njt1982/TrelloShortUrl/issues |
Bahasa yang Didukung | 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" } } |