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
擴展基本資訊
名稱 | Flourish |
ID | idakjmhehgdoppgbejfccgcdlcpbknfo |
官方網址 | 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" ] } |