Flourish

Simple usability improvements for Blossom.

Co to jest Flourish?

Flourish to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Simple usability improvements for Blossom.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Flourish

Pobierz pliki rozszerzeń Flourish w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Flourish Flourish
ID idakjmhehgdoppgbejfccgcdlcpbknfo
Oficjalny URL https://chromewebstore.google.com/detail/flourish/idakjmhehgdoppgbejfccgcdlcpbknfo
Opis Simple usability improvements for Blossom.
Rozmiar pliku 18.93 KB
Liczba instalacji 55
Aktualna Wersja 1.3.0
Ostatnia Aktualizacja 2016-10-26
Data Publikacji 2016-10-25
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://github.com/tonybaroneee/flourish
Obsługiwane Języki 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"
    ]
}