Flourish

Simple usability improvements for Blossom.

Flourish là gì?

Flourish là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Simple usability improvements for Blossom.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Flourish

Tải xuống các tệp mở rộng Flourish dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Flourish Flourish
ID idakjmhehgdoppgbejfccgcdlcpbknfo
URL Chính Thức https://chromewebstore.google.com/detail/flourish/idakjmhehgdoppgbejfccgcdlcpbknfo
Mô tả Simple usability improvements for Blossom.
Kích Thước Tệp 18.93 KB
Số Lần Cài Đặt 55
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2016-10-26
Ngày Phát Hành 2016-10-25
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tonybaroneee/flourish
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}