Trello My Cards Prioritization
My Cards prioritization.
什么是Trello My Cards Prioritization?
Trello My Cards Prioritization是由https://www.netmagnet.cz开发的Chrome扩展程序,该扩展的主要功能是“My Cards prioritization.”。
扩展截图
下载Trello My Cards Prioritization扩展crx文件
下载Trello My Cards Prioritization扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Visual prioritization of My Cards page list in Trello. NOT in a standard board view. Extension changes card's visual appearance based on its presence in a list:
Ideas: light transparency
Todo: without change
Doing: highlighted
To Deploy: highlighted
Done: hidden
Postponed: heavy transparency
Cancelled: hidden
These list names can be substrings, so cards in list "Done 2019-09-19" will be hidden.
Updates in v1.0.0:
- correctly detect page and content change so this extension works again :)
Updates in v1.1.1:
- Add "To Deploy" list name
- Fix css class names 扩展基本信息
| 名称 | |
| ID | bpbkpegngbkknmghhjbeekjdphjhkdif |
| 官方URL | https://chromewebstore.google.com/detail/trello-my-cards-prioritiz/bpbkpegngbkknmghhjbeekjdphjhkdif |
| 简介 | My Cards prioritization. |
| 文件大小 | 53.05 KB |
| 安装次数 | 19 |
| 当前版本 | 1.1.1 |
| 更新时间 | 2019-12-11 |
| 上架时间 | 2019-12-11 |
| 开发者 | https://www.netmagnet.cz |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://www.netmagnet.cz |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Trello My Cards Prioritization",
"short_name": "Trello My Cards Prio",
"description": "My Cards prioritization.",
"version": "1.1.1",
"author": "Tomas Kouba",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"https:\/\/trello.com\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/trello.com\/*"
],
"js": [
"jquery-3.2.1.min.js",
"bootstrap.js",
"mycards.js"
]
}
],
"web_accessible_resources": [
"style.css"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
} | |