Trello Short URL

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

Co to jest Trello Short URL?

Trello Short URL to rozszerzenie Chrome opracowane przez Nick Thompson, a jego główną funkcją jest „This extension provides a button on a trello card to copy the short url to the clipboard.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Trello Short URL

Pobierz pliki rozszerzeń Trello Short URL w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Trello Short URL Trello Short URL
ID kknbnjdfmclblpjkedhjfbbkgjomciga
Oficjalny URL https://chromewebstore.google.com/detail/trello-short-url/kknbnjdfmclblpjkedhjfbbkgjomciga
Opis This extension provides a button on a trello card to copy the short url to the clipboard.
Rozmiar pliku 22.16 KB
Liczba instalacji 339
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2015-02-02
Data Publikacji 2015-02-02
Ocena 4.40/5 Łącznie 5 Oceny
Deweloper Nick Thompson
Typ Płatności free
Strona Rozszerzenia https://github.com/njt1982/TrelloShortUrl
Adres URL Strony Pomocy https://github.com/njt1982/TrelloShortUrl/issues
Obsługiwane Języki 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"
    }
}