Trello Short URL
This extension provides a button on a trello card to copy the short url to the clipboard.
O que é Trello Short URL?
Trello Short URL é uma extensão do Chrome desenvolvida por Nick Thompson, e sua principal característica é "This extension provides a button on a trello card to copy the short url to the clipboard.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Trello Short URL
Baixe arquivos de extensão Trello Short URL no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Trello Short URL |
ID | kknbnjdfmclblpjkedhjfbbkgjomciga |
URL Oficial | https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga |
Descrição | This extension provides a button on a trello card to copy the short url to the clipboard. |
Tamanho do Arquivo | 22.16 KB |
Contagem de Instalações | 339 |
Versão Atual | 0.3 |
Última Atualização | 2015-02-02 |
Data de Publicação | 2015-02-02 |
Classificação | 4.40/5 Total de 5 Avaliações |
Desenvolvedor | Nick Thompson |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/njt1982/TrelloShortUrl |
URL da Página de Ajuda | https://github.com/njt1982/TrelloShortUrl/issues |
Idiomas Suportados | 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" } } |