Trello Quick Export Button

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

Vad är Trello Quick Export Button?

Trello Quick Export Button är en Chrome-tillägg utvecklad av wersimmon, och dess huvudfunktion är "Adds an 'Export JSON' button to the header menu of Trello boards.".

Ladda ner Trello Quick Export Button-förlängningens CRX-fil

Ladda ner Trello Quick Export Button-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Trello Quick Export Button Trello Quick Export Button
ID mlabdohgfpjffdcacadjnabecoapkdnb
Officiell webbadress https://chrome.google.com/webstore/detail/trello-quick-export-butto/mlabdohgfpjffdcacadjnabecoapkdnb
Beskrivning Adds an 'Export JSON' button to the header menu of Trello boards.
Filstorlek 4.61 KB
Antal Installationer 26
Aktuell Version 1.0.0
Senast Uppdaterad 2018-05-04
Publiceringsdatum 2018-05-04
Utvecklare wersimmon
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}