Trello No Strikethrough

Removes the strikethrough for completed tasks on Trello

ما هو Trello No Strikethrough؟

Trello No Strikethrough هو إضافة Chrome تم تطويرها بواسطة paradite، والميزة الرئيسية لها هي "Removes the strikethrough for completed tasks on Trello".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Trello No Strikethrough

قم بتنزيل ملفات الامتداد Trello No Strikethrough بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم Trello No Strikethrough Trello No Strikethrough
ID jalipphihlpncggkbgmhdanibebphhkb
عنوان URL الرسمي https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb
الوصف Removes the strikethrough for completed tasks on Trello
حجم الملف 7.12 KB
عدد التثبيتات 258
النسخة الحالية 1.0.2
آخر تحديث 2022-10-16
تاريخ النشر 2017-04-30
تقييم 5.00/5 مجموع تقييمات 4
المطور paradite
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/paradite/trello-no-strikethrough
اللغات المدعومة 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\/*"
    ]
}