Trello Short URL

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

Co je Trello Short URL?

Trello Short URL je rozšíření Chrome vyvinuté Nick Thompson, a jeho hlavní funkcí je „This extension provides a button on a trello card to copy the short url to the clipboard.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Trello Short URL

Stáhněte si soubory rozšíření Trello Short URL ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Trello Short URL Trello Short URL
ID kknbnjdfmclblpjkedhjfbbkgjomciga
Oficiální URL https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga
Popis This extension provides a button on a trello card to copy the short url to the clipboard.
Velikost souboru 22.16 KB
Počet instalací 339
Aktuální Verze 0.3
Poslední Aktualizace 2015-02-02
Datum Vydání 2015-02-02
Hodnocení 4.40/5 Celkem 5 Hodnocení
Vývojář Nick Thompson
Typ Platby free
Webové stránky Rozšíření https://github.com/njt1982/TrelloShortUrl
URL Stránky Nápovědy https://github.com/njt1982/TrelloShortUrl/issues
Podporované Jazyky 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"
    }
}