Styling Trello

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

Qu'est-ce que Styling Trello ?

Styling Trello est une extension Chrome développée par https://kainoto.com, et sa fonction principale est "This extension makes certain Trello forms more readable and therefore useful.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Styling Trello

Téléchargez les fichiers d'extension Styling Trello au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Styling Trello Styling Trello
ID igddgiapehjmgfiionknahkilcbglfpa
URL Officiel https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa
Description This extension makes certain Trello forms more readable and therefore useful.
Taille du Fichier 94.38 KB
Nombre d'Installations 154
Version Actuelle 1.1
Dernière Mise à Jour 2016-04-30
Date de Publication 2016-04-30
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://kainoto.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}