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.」です。
拡張機能のスクリーンショット
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 |
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" ] } ] } |