Trello No Strikethrough

Removes the strikethrough for completed tasks on Trello

Wat is Trello No Strikethrough?

Trello No Strikethrough is een Chrome-extensie ontwikkeld door paradite, en de belangrijkste functie is "Removes the strikethrough for completed tasks on Trello".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Trello No Strikethrough

Download Trello No Strikethrough-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Trello No Strikethrough Trello No Strikethrough
ID jalipphihlpncggkbgmhdanibebphhkb
Officiële URL https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb
Beschrijving Removes the strikethrough for completed tasks on Trello
Bestandsgrootte 7.12 KB
Aantal Installaties 258
Huidige Versie 1.0.2
Laatst Bijgewerkt 2022-10-16
Publicatiedatum 2017-04-30
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar paradite
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/paradite/trello-no-strikethrough
Ondersteunde Talen 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\/*"
    ]
}