Flourish

Simple usability improvements for Blossom.

Flourishとは何ですか?

FlourishはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Simple usability improvements for Blossom.」です。

拡張機能のスクリーンショット

screenshot

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 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"
    ]
}