Super Trello

Adds new features to trello

Cos'è Super Trello?

Super Trello è un'estensione di Chrome sviluppata da jrf0110, e la sua funzione principale è "Adds new features to trello".

Scarica il file CRX dell'estensione Super Trello

Scarica i file di estensione Super Trello 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

                        Extra features on top of https://trello.com - Currently adds the ability to browse cards with the arrow keys. With a card open, press down or up to go to the next or previous card in the list. Press right or left to go to the next or previous list on the board.

This is just the first version and I will add new features later.

Source code: https://github.com/jrf0110/super-trello

#### Card Switcher

Use the arrow keys (up/down) to go through cards in a list

#### List Switcher

Use the arrow keys (left/right) to switch lists from the open card view

### Version 1.1 Update

*Version 1.1 changes keybindings to be prefixed with SHIFT*

* Fixes broken keybindings
* Refactored codebase                    

Informazioni di Base sull'Estensione

Nome Super Trello Super Trello
ID jhmefmkepidkekablipkaemmkinkbain
URL Ufficiale https://chrome.google.com/webstore/detail/jhmefmkepidkekablipkaemmkinkbain
Descrizione Adds new features to trello
Dimensione del File 92.02 KB
Conteggio Installazioni 62
Versione Corrente 1.1
Ultimo Aggiornamento 2017-08-22
Data di Pubblicazione 2017-08-22
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore jrf0110
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Super Trello",
    "description": "Adds new features to trello",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/b\/*\/*",
                "https:\/\/trello.com\/c\/*\/*"
            ],
            "js": [
                "dist\/super-trello.js"
            ]
        }
    ]
}