Trello Card Numbers

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

Trello Card Numbersคืออะไร?

Trello Card Numbers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย John DeWyze และคุณลักษณะหลักของมันคือ "Adds card numbers to a variety of places when using Trello."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello Card Numbers

ดาวน์โหลดไฟล์ส่วนขยาย Trello Card Numbers ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}