Trello Business Style

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

Vad är Trello Business Style?

Trello Business Style är en Chrome-tillägg utvecklad av Leonardo C Bottaro, och dess huvudfunktion är "Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Trello Business Style-förlängningens CRX-fil

Ladda ner Trello Business Style-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Trello Business Style Trello Business Style
ID knkibcjejmdcepoomodabefjobmajoco
Officiell webbadress https://chromewebstore.google.com/detail/trello-business-style/knkibcjejmdcepoomodabefjobmajoco
Beskrivning Makes it easier to see what's important on Trello cards for teams that have too much information on their Boards
Filstorlek 2.22 MB
Antal Installationer 297
Aktuell Version 1.2.1
Senast Uppdaterad 2018-03-28
Publiceringsdatum 2018-03-28
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Leonardo C Bottaro
Betalningssätt free
Tilläggswebbplats https://github.com/leocb/trello-businessStyle
Hjälpsida URL https://github.com/leocb/trello-businessStyle/issues
Stödda Språk 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"
            ]
        }
    ]
}