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
公式URL 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
Eメール [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
        }
    ]
}