Trello No Strikethrough

Removes the strikethrough for completed tasks on Trello

Hvad er Trello No Strikethrough?

Trello No Strikethrough er en Chrome-udvidelse udviklet af paradite, og dens hovedfunktion er "Removes the strikethrough for completed tasks on Trello".

Udvidelsesskærmbilleder

screenshot

Download Trello No Strikethrough-udvidelses-CRX-fil

Download Trello No Strikethrough-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Trello No Strikethrough Trello No Strikethrough
ID jalipphihlpncggkbgmhdanibebphhkb
Officiel URL https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb
Beskrivelse Removes the strikethrough for completed tasks on Trello
Filstørrelse 7.12 KB
Antal Installationer 258
Nuværende Version 1.0.2
Senest Opdateret 2022-10-16
Udgivelsesdato 2017-04-30
Bedømmelse 5.00/5 Samlet 4 Bedømmelser
Udvikler paradite
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/paradite/trello-no-strikethrough
Understøttede Sprog 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\/*"
    ]
}