Trello No Strikethrough

Removes the strikethrough for completed tasks on Trello

Trello No Strikethrough là gì?

Trello No Strikethrough là một tiện ích mở rộng Chrome được phát triển bởi paradite, và tính năng chính của nó là "Removes the strikethrough for completed tasks on Trello".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Trello No Strikethrough

Tải xuống các tệp mở rộng Trello No Strikethrough dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Trello No Strikethrough Trello No Strikethrough
ID jalipphihlpncggkbgmhdanibebphhkb
URL Chính Thức https://chromewebstore.google.com/detail/trello-no-strikethrough/jalipphihlpncggkbgmhdanibebphhkb
Mô tả Removes the strikethrough for completed tasks on Trello
Kích Thước Tệp 7.12 KB
Số Lần Cài Đặt 258
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2022-10-16
Ngày Phát Hành 2017-04-30
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển paradite
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/paradite/trello-no-strikethrough
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}