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 |
电子邮箱 | [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" ] } |