Trello Short URL

This extension provides a button on a trello card to copy the short url to the clipboard.

Cos'è Trello Short URL?

Trello Short URL è un'estensione di Chrome sviluppata da Nick Thompson, e la sua funzione principale è "This extension provides a button on a trello card to copy the short url to the clipboard.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Trello Short URL

Scarica i file di estensione Trello Short URL in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Trello Short URL Trello Short URL
ID kknbnjdfmclblpjkedhjfbbkgjomciga
URL Ufficiale https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga
Descrizione This extension provides a button on a trello card to copy the short url to the clipboard.
Dimensione del File 22.16 KB
Conteggio Installazioni 339
Versione Corrente 0.3
Ultimo Aggiornamento 2015-02-02
Data di Pubblicazione 2015-02-02
Valutazione 4.40/5 Totale 5 Valutazioni
Sviluppatore Nick Thompson
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/njt1982/TrelloShortUrl
URL della Pagina di Aiuto https://github.com/njt1982/TrelloShortUrl/issues
Lingue Supportate 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"
    }
}