Trello custom progress bar

Customize you Trello progress bar

Was ist Trello custom progress bar?

Trello custom progress bar ist eine Chrome-Erweiterung, die von topaztee entwickelt wurde, und ihr Hauptmerkmal ist "Customize you Trello progress bar".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Trello custom progress bar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Trello custom progress bar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Trello custom progress bar Trello custom progress bar
ID afbaaokfpieehjeffeceajdopnlempob
Offizielle URL https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob
Beschreibung Customize you Trello progress bar
Dateigröße 50.44 KB
Installationsanzahl 46
Aktuelle Version 1.2
Letztes Update 2019-04-29
Veröffentlichungsdatum 2019-04-29
Bewertung 2.33/5 Insgesamt 3 Bewertungen
Entwickler topaztee
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
}