Styling Trello

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

Apa itu Styling Trello?

Styling Trello adalah ekstensi Chrome yang dikembangkan oleh https://kainoto.com, dan fitur utamanya adalah "This extension makes certain Trello forms more readable and therefore useful.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Styling Trello

Unduh file ekstensi Styling Trello dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Styling Trello Styling Trello
ID igddgiapehjmgfiionknahkilcbglfpa
URL Resmi https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa
Deskripsi This extension makes certain Trello forms more readable and therefore useful.
Ukuran File 94.38 KB
Jumlah Instalasi 154
Versi Saat Ini 1.1
Terakhir Diperbarui 2016-04-30
Tanggal Publikasi 2016-04-30
Penilaian 5.00/5 Total 2 Penilaian
Pengembang https://kainoto.com
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}