Trello No Strikethrough

Removes the strikethrough for completed tasks on Trello

Co to jest Trello No Strikethrough?

Trello No Strikethrough to rozszerzenie Chrome opracowane przez paradite, a jego główną funkcją jest „Removes the strikethrough for completed tasks on Trello”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Trello No Strikethrough

Pobierz pliki rozszerzeń Trello No Strikethrough w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Trello No Strikethrough Trello No Strikethrough
ID jalipphihlpncggkbgmhdanibebphhkb
Oficjalny URL https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb
Opis Removes the strikethrough for completed tasks on Trello
Rozmiar pliku 7.12 KB
Liczba instalacji 258
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2022-10-16
Data Publikacji 2017-04-30
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper paradite
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/paradite/trello-no-strikethrough
Obsługiwane Języki 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\/*"
    ]
}