Background Colors Cards for Trello
When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.…
Background Colors Cards for Trelloとは何ですか?
Background Colors Cards for Trelloはnikey.esによって開発されたChromeの拡張機能で、その主な機能は「When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.…」です。
拡張機能のスクリーンショット
Background Colors Cards for Trello拡張機能のCRXファイルをダウンロード
Background Colors Cards for Trello拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards. The extension get the color from the card label.
拡張機能の基本情報
名前 | Background Colors Cards for Trello |
ID | gbpnfdnpkiogmaicmknplgedbcjndaaf |
公式URL | https://chromewebstore.google.com/detail/background-colors-cards-f/gbpnfdnpkiogmaicmknplgedbcjndaaf |
説明 | When you go to your boards, Chrome displays an icon in the right of the address bar to change the background colors of the cards.… |
ファイルサイズ | 50.04 KB |
インストール数 | 1,297 |
現在のバージョン | 0.2 |
最終更新日 | 2014-03-21 |
公開日 | 2014-03-21 |
評価 | 3.20/5 合計 5 レビュー |
開発者 | nikey.es |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Background Colors Cards for Trello", "short_name": "Back Trello", "description": "", "version": "0.2", "background": { "scripts": [ "background.js" ] }, "icons": { "16": "iconBackground16.png", "48": "iconBackground48.png", "128": "iconBackground128.png" }, "page_action": { "default_icon": "iconBackground16.png", "default_title": "Click to Apply Background Colors Cards.\nClick Again to Clean Background Colors Cards." }, "content_scripts": [ { "matches": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*" ], "js": [ "jquery.1.11.0.min.js", "content.js" ], "run_at": "document_end" } ], "permissions": [ "http:\/\/trello.com\/*", "https:\/\/trello.com\/*", "declarativeContent" ] } |