Trello No Strikethrough

Removes the strikethrough for completed tasks on Trello

什麼是Trello No Strikethrough?

Trello No Strikethrough是由paradite開發的Chrome擴展程式,該擴展的主要功能是“Removes the strikethrough for completed tasks on Trello”。

擴展截圖

screenshot

下載Trello No Strikethrough擴展crx文件

下載Trello No Strikethrough擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}