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文件

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