Styling Trello

This extension makes certain Trello forms more readable and therefore useful.

Vad är Styling Trello?

Styling Trello är en Chrome-tillägg utvecklad av https://kainoto.com, och dess huvudfunktion är "This extension makes certain Trello forms more readable and therefore useful.".

Tilläggsskärmbilder

screenshot

Ladda ner Styling Trello-förlängningens CRX-fil

Ladda ner Styling Trello-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

                        For users of Trello who have hard time reading the cards descriptions and finding the important details. It is a first version and only adjusting few things on the cards. As for example, moving the buttons out of the main dialog window.                    

Grundläggande Information om Tillägg

Namn Styling Trello Styling Trello
ID igddgiapehjmgfiionknahkilcbglfpa
Officiell webbadress https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa
Beskrivning This extension makes certain Trello forms more readable and therefore useful.
Filstorlek 94.38 KB
Antal Installationer 154
Aktuell Version 1.1
Senast Uppdaterad 2016-04-30
Publiceringsdatum 2016-04-30
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://kainoto.com
E-post [email protected]
Betalningssätt free
Stödda Språk en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Styling Trello",
    "description": "This extension makes certain Trello forms more readable and therefore useful.",
    "author": "Kainoto",
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png",
        "48": "icon-48.png",
        "32": "icon-32.png",
        "16": "icon-16.png"
    },
    "version": "1.1",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "bg.js"
        ],
        "all_frames": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "css": [
                "tstyle.css"
            ],
            "js": [
                "tstyle.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Styling (making readable) Trello"
    }
}