Trello Enhanced Date
Chrome Extension for making the Trello date reminder more customizable
什么是Trello Enhanced Date?
Trello Enhanced Date是由https://mgapcdev.com开发的Chrome扩展程序,该扩展的主要功能是“Chrome Extension for making the Trello date reminder more customizable”。
扩展截图
下载Trello Enhanced Date扩展crx文件
下载Trello Enhanced Date扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension makes the default Trello due date feature more customizable by allowing the user to specify when to use which colors.
Days info:
The number of days indicates when the selected color should be used. A positive number of days is number of days after the deadline. A negative number of days (e.g. "-7") indicates number of days before the deadline.
Colors info:
Colors are currently limited to only hex colors, as that's easy to write code for. The "#"(hash) character is currently required, so this will allow hex colors of 4 and 7 characters (e.g. #FFF and #FFFFFF)
If the is interest in support for RGB and named colors (e.g. light-blue), I'll look into implementing it.
Language info:
Currently only "UK english" is fully supported (not US english). If there is interest in support for other language send a mail to [email protected] or submit an issue on the github page.
You can find the project on github: https://github.com/MGApcDev/Trello-Enhanced-Date and is licensed under the terms of the MIT license.
Hope you'll find this extension useful :) 扩展基本信息
| 名称 | |
| ID | ekkepplnmefeilpjninfgmmbdadamadl |
| 官方URL | https://chromewebstore.google.com/detail/trello-enhanced-date/ekkepplnmefeilpjninfgmmbdadamadl |
| 简介 | Chrome Extension for making the Trello date reminder more customizable |
| 文件大小 | 233 KB |
| 安装次数 | 476 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2016-09-20 |
| 上架时间 | 2016-09-20 |
| 评分 | 2.57/5 共7次评分 |
| 开发者 | https://mgapcdev.com |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://github.com/MGApcDev/Trello-Enhanced-Date |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello Enhanced Date",
"description": "Chrome Extension for making the Trello date reminder more customizable",
"version": "1.0.1",
"author": "Mathias Grundtvig Andreasen(MGApcDev)",
"options_page": "pages\/options.html",
"icons": {
"16": "\/images\/icon16.png",
"32": "\/images\/icon32.png",
"64": "\/images\/icon64.png",
"128": "\/images\/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "\/images\/icon16.png",
"32": "\/images\/icon32.png",
"64": "\/images\/icon64.png",
"128": "\/images\/icon128.png"
},
"default_popup": "pages\/options.html"
},
"permissions": [
"https:\/\/www.trello.com\/*",
"storage"
],
"content_scripts": [
{
"matches": [
"*:\/\/trello.com\/*",
"*:\/\/www.trello.com\/*"
],
"js": [
"\/scripts\/vendor\/jquery.min.js",
"\/scripts\/basic.js",
"\/scripts\/trelloDate.js"
]
}
]
} | |