Trello minimal UI toggle

Hide unused elements from Trello board

Co to jest Trello minimal UI toggle?

Trello minimal UI toggle to rozszerzenie Chrome opracowane przez terrylidev, a jego główną funkcją jest „Hide unused elements from Trello board”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Trello minimal UI toggle

Pobierz pliki rozszerzeń Trello minimal UI toggle 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

                        This extension allows you to have a clean Trello board by hiding unused elements, buttons and functions.                    

Podstawowe informacje o rozszerzeniu

Nazwa Trello minimal UI toggle Trello minimal UI toggle
ID higifdcpoicalcpgmbohdohmcgamabfn
Oficjalny URL https://chromewebstore.google.com/detail/trello-minimal-ui-toggle/higifdcpoicalcpgmbohdohmcgamabfn
Opis Hide unused elements from Trello board
Rozmiar pliku 232 KB
Liczba instalacji 40
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2020-06-08
Data Publikacji 2020-06-07
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper terrylidev
E-mail terrylidev@gmail.com
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello minimal UI toggle",
    "version": "1.0.0",
    "description": "Hide unused elements from Trello board",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "run_at": "document_idle",
            "matches": [
                "https:\/\/trello.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}