Trello Quick Export Button

Adds an 'Export JSON' button to the header menu of Trello boards.

Co to jest Trello Quick Export Button?

Trello Quick Export Button to rozszerzenie Chrome opracowane przez wersimmon, a jego główną funkcją jest „Adds an 'Export JSON' button to the header menu of Trello boards.”.

Pobierz plik CRX rozszerzenia Trello Quick Export Button

Pobierz pliki rozszerzeń Trello Quick Export Button 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 an 'Export JSON' button to the header menu of Trello boards, which will trigger a download of the board's JSON export. It may take a few seconds for the Trello server for begin the download.                    

Podstawowe informacje o rozszerzeniu

Nazwa Trello Quick Export Button Trello Quick Export Button
ID mlabdohgfpjffdcacadjnabecoapkdnb
Oficjalny URL https://chrome.google.com/webstore/detail/trello-quick-export-butto/mlabdohgfpjffdcacadjnabecoapkdnb
Opis Adds an 'Export JSON' button to the header menu of Trello boards.
Rozmiar pliku 4.61 KB
Liczba instalacji 26
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2018-05-04
Data Publikacji 2018-05-04
Deweloper wersimmon
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Quick Export Button",
    "version": "1.0.0",
    "description": "Adds an 'Export JSON' button to the header menu of Trello boards.",
    "icons": {
        "128": "trello-exportButton.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/b\/*"
            ],
            "js": [
                "trello-exportButton.js"
            ]
        }
    ]
}