Trello custom progress bar

Customize you Trello progress bar

Apa itu Trello custom progress bar?

Trello custom progress bar adalah ekstensi Chrome yang dikembangkan oleh topaztee, dan fitur utamanya adalah "Customize you Trello progress bar".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Trello custom progress bar

Unduh file ekstensi Trello custom progress bar 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

                        Change the boring blue progress bar to something else.
To change the progress bar, right click the extension icon, and choose options.                    

Informasi Dasar Ekstensi

Nama Trello custom progress bar Trello custom progress bar
ID afbaaokfpieehjeffeceajdopnlempob
URL Resmi https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob
Deskripsi Customize you Trello progress bar
Ukuran File 50.44 KB
Jumlah Instalasi 46
Versi Saat Ini 1.2
Terakhir Diperbarui 2019-04-29
Tanggal Publikasi 2019-04-29
Penilaian 2.33/5 Total 3 Penilaian
Pengembang topaztee
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello custom progress bar",
    "short_name": "Trello custom progress bar",
    "description": "Customize you Trello progress bar",
    "version": "1.2",
    "permissions": [
        "tabs",
        "storage",
        "webNavigation"
    ],
    "browser_action": {
        "default_title": "blahblah",
        "default_icon": {
            "32": "32.png"
        }
    },
    "background": {
        "matches": [
            "*:\/\/trello.com\/c\/*"
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ],
    "options_page": "options.html"
}