Trello Business Style

Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards

Co to jest Trello Business Style?

Trello Business Style to rozszerzenie Chrome opracowane przez Leonardo C Bottaro, a jego główną funkcją jest „Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Trello Business Style

Pobierz pliki rozszerzeń Trello Business Style 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 adds a button on the top right corner inside your boards, click it to make the cards more readable and less crowded.

Changelog:

v1.2.1
Fixed Bug when changing boards
Tweaks to the style

v1.2.0
Updated extension to better use new Trello features
Added persistent state

v1.1.0
Bug fixes

v1.0.0
Initial Release

Make it better! Contribute on GitHub! https://github.com/leocb/trello-businessStyle                    

Podstawowe informacje o rozszerzeniu

Nazwa Trello Business Style Trello Business Style
ID knkibcjejmdcepoomodabefjobmajoco
Oficjalny URL https://chromewebstore.google.com/detail/trello-business-style/knkibcjejmdcepoomodabefjobmajoco
Opis Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards
Rozmiar pliku 2.22 MB
Liczba instalacji 297
Aktualna Wersja 1.2.1
Ostatnia Aktualizacja 2018-03-28
Data Publikacji 2018-03-28
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Leonardo C Bottaro
Typ Płatności free
Strona Rozszerzenia https://github.com/leocb/trello-businessStyle
Adres URL Strony Pomocy https://github.com/leocb/trello-businessStyle/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Business Style",
    "short_name": "trello-Business-Style",
    "description": "Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards",
    "version": "1.2.1",
    "icons": {
        "16": "images\/icon-16.png",
        "64": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "storage",
        "https:\/\/trello.com\/*"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "content-scripts.js"
            ],
            "css": [
                "content-styles.css"
            ]
        }
    ]
}