Trello Board Color Changer
Let's you change your Trello boards background color.
什么是Trello Board Color Changer?
Trello Board Color Changer是由daergoth开发的Chrome扩展程序,该扩展的主要功能是“Let's you change your Trello boards background color.”。
下载Trello Board Color Changer扩展crx文件
下载Trello Board Color Changer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This small extension let's you change your Trello boards background color. Further development is planned!
扩展基本信息
名称 | |
ID | gkhfebpopgcijhcobafpmaomafhaghhb |
官方URL | https://chromewebstore.google.com/detail/trello-board-color-change/gkhfebpopgcijhcobafpmaomafhaghhb |
简介 | Let's you change your Trello boards background color. |
文件大小 | 315 KB |
安装次数 | 20 |
当前版本 | 0.4 |
更新时间 | 2016-08-06 |
上架时间 | 2016-08-06 |
评分 | 3.00/5 共2次评分 |
开发者 | daergoth |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Trello Board Color Changer", "description": "Let's you change your Trello boards background color.", "version": "0.4", "permissions": [ "tabs", "storage", "*:\/\/trello.com\/*" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "browser_action": { "default_title": "Set your Trello boards background color", "default_icon": "icons\/icon16.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/trello.com\/b\/*" ], "js": [ "jquery\/jquery.min.js", "content-script.js" ] } ], "manifest_version": 2 } |