Trello Card Numbers

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

Trello Card Numbers란 무엇입니까?

Trello Card Numbers은(는) John DeWyze에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds card numbers to a variety of places when using Trello."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Trello Card Numbers 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}