Trello Card Numbers

Places card numbers on Trello cards

Trello Card Numbers là gì?

Trello Card Numbers là một tiện ích mở rộng Chrome được phát triển bởi hal313, và tính năng chính của nó là "Places card numbers on Trello cards".

Ả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 Card Numbers

Tải xuống các tệp mở rộng Trello Card Numbers 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

                        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                    

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

Tên Trello Card Numbers Trello Card Numbers
ID ijnbgfbpkcnohomlcomegpocpkneblep
URL Chính Thức https://chromewebstore.google.com/detail/trello-card-numbers/ijnbgfbpkcnohomlcomegpocpkneblep
Mô tả Places card numbers on Trello cards
Kích Thước Tệp 75.84 KB
Số Lần Cài Đặt 609
Phiên Bản Hiện Tại 0.0.10
Cập Nhật Lần Cuối 2021-04-15
Ngày Phát Hành 2018-04-22
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển hal313
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hal313/trello-card-numbers-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}