Trello Card Numbers

Places card numbers on Trello cards

什麼是Trello Card Numbers?

Trello Card Numbers是由hal313開發的Chrome擴展程式,該擴展的主要功能是“Places card numbers on Trello cards”。

擴展截圖

screenshot

下載Trello Card Numbers擴展crx文件

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

擴展使用說明

                        Adds card numbers (ID's) to Trello cards.

Trello cards have unique ID's associated with them, but they are not displayed. This extension displays the unique ID's of each card in order to visually identify it. This is useful, for example, when a team is discussing a Trello board and prefers to use ID's in place of content for the sake of clarity.

Source code available on GitHub: https://github.com/hal313/trello-card-numbers-chrome-extension                    

擴展基本資訊

名稱 Trello Card Numbers Trello Card Numbers
ID ijnbgfbpkcnohomlcomegpocpkneblep
官方網址 https://chromewebstore.google.com/detail/trello-card-numbers/ijnbgfbpkcnohomlcomegpocpkneblep
簡介 Places card numbers on Trello cards
檔案大小 75.84 KB
安裝次數 609
目前版本 0.0.10
更新時間 2021-04-15
上架時間 2018-04-22
評分 4.00/5 共 2 次評分
開發者 hal313
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/hal313/trello-card-numbers-chrome-extension
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.0.10",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Trello Card Numbers"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.trello.com\/*",
                "https:\/\/*.trello.com\/*"
            ],
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}