Trello No Strikethrough

Removes the strikethrough for completed tasks on Trello

Cos'è Trello No Strikethrough?

Trello No Strikethrough è un'estensione di Chrome sviluppata da paradite, e la sua funzione principale è "Removes the strikethrough for completed tasks on Trello".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Trello No Strikethrough

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

                        Trello strikethrough for completed tasks by default can be annoying.

This extensions removes Trello strikethrough for completed tasks in checklists.

Source code:
https://github.com/paradite/trello-no-strikethrough                    

Informazioni di Base sull'Estensione

Nome Trello No Strikethrough Trello No Strikethrough
ID jalipphihlpncggkbgmhdanibebphhkb
URL Ufficiale https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb
Descrizione Removes the strikethrough for completed tasks on Trello
Dimensione del File 7.12 KB
Conteggio Installazioni 258
Versione Corrente 1.0.2
Ultimo Aggiornamento 2022-10-16
Data di Pubblicazione 2017-04-30
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore paradite
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/paradite/trello-no-strikethrough
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello No Strikethrough",
    "description": "Removes the strikethrough for completed tasks on Trello",
    "icons": {
        "128": "icon.png"
    },
    "version": "1.0.2",
    "background": {
        "page": "popup.html"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Trello No Strikethrough"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "css": [
                "mystyles.css"
            ]
        }
    ],
    "permissions": [
        "https:\/\/trello.com\/*"
    ]
}