Flourish
Simple usability improvements for Blossom.
什么是Flourish?
Flourish是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Simple usability improvements for Blossom.”。
扩展截图
下载Flourish扩展crx文件
下载Flourish扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension enhances a few core features of Blossom.
Real-Time Board Updating:
- Allows your Blossom board to update when there is update made on the server. No more needing to hit refresh to see if your board has changed.
- Won't refresh while you're in the middle of moving cards.
Collaborators Box v2.0:
- Transforms the face image tiles into rows of faces with names, sorted alphabetically, making is significantly easier to find a given person.
- Adds a search input to find a particular person quickly
Open source on GitHub (feel free to open an issue/PR!): https://github.com/tonybaroneee/flourish 扩展基本信息
| 名称 | |
| ID | idakjmhehgdoppgbejfccgcdlcpbknfo |
| 官方URL | https://chromewebstore.google.com/detail/flourish/idakjmhehgdoppgbejfccgcdlcpbknfo |
| 简介 | Simple usability improvements for Blossom. |
| 文件大小 | 18.93 KB |
| 安装次数 | 55 |
| 当前版本 | 1.3.0 |
| 更新时间 | 2016-10-26 |
| 上架时间 | 2016-10-25 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | Unknown |
| 付费类型 | free |
| 扩展官网 | https://github.com/tonybaroneee/flourish |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Flourish",
"short_name": "Flourish",
"version": "1.3.0",
"description": "Simple usability improvements for Blossom.",
"icons": {
"128": "images\/flourish128.png"
},
"page_action": {
"default_icon": "images\/flourish38.png"
},
"permissions": [
"tabs"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.blossom.io\/*",
"https:\/\/blossom.io\/*"
],
"css": [
"flourish.css"
],
"js": [
"extension.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"flourish.js"
]
} | |