Trello List Filter

Filters Trello Lists based on their titles

Cos'è Trello List Filter?

Trello List Filter è un'estensione di Chrome sviluppata da anthonyastige, e la sua funzione principale è "Filters Trello Lists based on their titles".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Trello List Filter

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

                        Filters your Trello Lists by their titles

* Filters instantly as you type
* Automatically saves settings
* Applies across all open Trello Boards

Includes advanced options such as

* Blacklist vs Whitelist
* Matching modes: Contains/Exact Match/Regex
* Case sensitivity (on / off)                    

Informazioni di Base sull'Estensione

Nome Trello List Filter Trello List Filter
ID nejmlobcaghdppkjgihmmeigobhgecnn
URL Ufficiale https://chromewebstore.google.com/detail/trello-list-filter/nejmlobcaghdppkjgihmmeigobhgecnn
Descrizione Filters Trello Lists based on their titles
Dimensione del File 6.4 KB
Conteggio Installazioni 23
Versione Corrente 1.0
Ultimo Aggiornamento 2017-05-04
Data di Pubblicazione 2017-05-04
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore anthonyastige
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello List Filter",
    "description": "Filters Trello Lists based on their titles",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "js": [
                "hider.js"
            ],
            "run_at": "document_end"
        }
    ]
}