Trello custom progress bar

Customize you Trello progress bar

Co to jest Trello custom progress bar?

Trello custom progress bar to rozszerzenie Chrome opracowane przez topaztee, a jego główną funkcją jest „Customize you Trello progress bar”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Trello custom progress bar

Pobierz pliki rozszerzeń Trello custom progress bar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Trello custom progress bar Trello custom progress bar
ID afbaaokfpieehjeffeceajdopnlempob
Oficjalny URL https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob
Opis Customize you Trello progress bar
Rozmiar pliku 50.44 KB
Liczba instalacji 46
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2019-04-29
Data Publikacji 2019-04-29
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper topaztee
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
}