Trello plugin all-in-one - Truello

Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name

什麼是Trello plugin all-in-one - Truello?

Trello plugin all-in-one - Truello是由Derrick Qin開發的Chrome擴展程式,該擴展的主要功能是“Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name”。

擴展截圖

screenshot
screenshot

下載Trello plugin all-in-one - Truello擴展crx文件

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

擴展使用說明

                        Thanks for using Truello, an all-in-one Trello plugin.

***NEW:***
[20231104] Well, I didn't realize this extension is used by so many people. This release is for you folks!
There was a release of Trello website on 20 Oct 2023, which removed hidden card number and the total number of each list/column. I had to re-implement these features. It took me some time because Chrome Web Store no longer accepts Manifest V2 extensions. I had to migrate it to Manifest V3. So there yougo: version 2.0.0 is here.

[20170815] Show full label name - fix it to revert the changes Trello did on 7th Aug
[20170630] Now adding options to disable features excluding aging

Features:

1. True age for the Trello card

Trello has a card aging feature, but it does not show the true age of the card in a list. When you add a comment or update the card name, the card will be treated as new. The feature can tell you how long the card has been in the list. No excuse any more!

2. Card number

Display the missing Trello card number.

3. Card count for each column

Display the card count at top of the columns.

4. Label name

Display the label names and still keep the color of them.                    

擴展基本資訊

名稱 Trello plugin all-in-one - Truello Trello plugin all-in-one - Truello
ID pnfioopglhebphfgkagefdmajgibahkk
官方網址 https://chromewebstore.google.com/detail/trello-plugin-all-in-one/pnfioopglhebphfgkagefdmajgibahkk
簡介 Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name
檔案大小 339 KB
安裝次數 8,758
目前版本 2.0.0
更新時間 2023-11-07
上架時間 2019-04-27
評分 3.92/5 共 13 次評分
開發者 Derrick Qin
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/derrickqin/trello-plugin-all-in-one
說明頁面URL https://github.com/derrickqin/trello-plugin-all-in-one/issues
隱私政策頁面URL https://github.com/derrickqin/trello-plugin-all-in-one/blob/main/privacy-policy.md
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Trello plugin all-in-one - Truello",
    "short_name": "Truello",
    "version": "2.0.0",
    "description": "Tired of having too many extensions for Trello? Add missing features in ONE Chrome extension: Card age, number, count and lable name",
    "author": "Derrick Qin",
    "permissions": [
        "tabs",
        "storage",
        "scripting"
    ],
    "content_scripts": [
        {
            "js": [
                "thirdPartyLib\/moment.js",
                "truello.js"
            ],
            "run_at": "document_idle",
            "matches": [
                "https:\/\/trello.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html"
    }
}