Trello custom progress bar

Customize you Trello progress bar

Cos'è Trello custom progress bar?

Trello custom progress bar è un'estensione di Chrome sviluppata da topaztee, e la sua funzione principale è "Customize you Trello progress bar".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Trello custom progress bar

Scarica i file di estensione Trello custom progress bar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Trello custom progress bar Trello custom progress bar
ID afbaaokfpieehjeffeceajdopnlempob
URL Ufficiale https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob
Descrizione Customize you Trello progress bar
Dimensione del File 50.44 KB
Conteggio Installazioni 46
Versione Corrente 1.2
Ultimo Aggiornamento 2019-04-29
Data di Pubblicazione 2019-04-29
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore topaztee
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
}