Trello Card Numbers

Adds card numbers to a variety of places when using Trello.

Trello Card Numbers क्या है?

Trello Card Numbers John DeWyze द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds card numbers to a variety of places when using Trello."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This adds card numbers to Trello cards to help when viewing/discussing boards with a group of people. Trello actually includes card numbers but hides them by default.

This extension does the following:
- Reveals card numbers on cards themselves
- Reveals the card count for a given list
- Adds a card number to a created card
- Adds a card number head in the detail view
- Allows you to make card numbers bold
- Allows you to change the color of the card numbers
- Optional "Copy details" button for copying number and card title

This project was based off the widely available bookmarklet for Trello numbers mentioned in their forum at https://trello.com/c/PkIrgKzd/36-show-card-numbers.

******************
## 2.3.0 (2017-10-27)
- Fix bug where method is called on nil
- Fix bug where number isn't added on card create
- Add customizations to copy details button
- Improve html/css around options box

You can add improvements or comments on github: https://github.com/dewyze/trello-card-numbers.                    

एक्सटेंशन की मूल जानकारी

नाम Trello Card Numbers Trello Card Numbers
ID kadpkdielickimifpinkknemjdipghaf
आधिकारिक URL https://chromewebstore.google.com/detail/trello-card-numbers/kadpkdielickimifpinkknemjdipghaf
विवरण Adds card numbers to a variety of places when using Trello.
फ़ाइल का आकार 190 KB
स्थापना संख्या 70,000
वर्तमान संस्करण 2.3.0
अंतिम अपडेट 2017-10-27
प्रकाशन तिथि 2017-10-27
रेटिंग 4.40/5 कुल 89 रेटिंग्स
डेवलपर John DeWyze
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dewyze/trello-card-numbers
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Card Numbers",
    "description": "Adds card numbers to a variety of places when using Trello.",
    "version": "2.3.0",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "https:\/\/trello.com\/*",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "trello-card-numbers.js"
            ]
        }
    ]
}