Trello No Strikethrough

Removes the strikethrough for completed tasks on Trello

Apa itu Trello No Strikethrough?

Trello No Strikethrough adalah ekstensi Chrome yang dikembangkan oleh paradite, dan fitur utamanya adalah "Removes the strikethrough for completed tasks on Trello".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Trello No Strikethrough

Unduh file ekstensi Trello No Strikethrough dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Trello No Strikethrough Trello No Strikethrough
ID jalipphihlpncggkbgmhdanibebphhkb
URL Resmi https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb
Deskripsi Removes the strikethrough for completed tasks on Trello
Ukuran File 7.12 KB
Jumlah Instalasi 258
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2022-10-16
Tanggal Publikasi 2017-04-30
Penilaian 5.00/5 Total 4 Penilaian
Pengembang paradite
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/paradite/trello-no-strikethrough
Bahasa yang Didukung 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\/*"
    ]
}