Trello Card Numbers

Places card numbers on Trello cards

Trello Card Numbers क्या है?

Trello Card Numbers hal313 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Places card numbers on Trello cards"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Trello Card Numbers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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
        }
    ]
}