Flourish
Simple usability improvements for Blossom.
Flourish란 무엇입니까?
Flourish은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple usability improvements for Blossom."입니다.
확장 프로그램 스크린샷
Flourish 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" ] } |