Trello minimal UI toggle

Hide unused elements from Trello board

Apa itu Trello minimal UI toggle?

Trello minimal UI toggle adalah ekstensi Chrome yang dikembangkan oleh terrylidev, dan fitur utamanya adalah "Hide unused elements from Trello board".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Trello minimal UI toggle

Unduh file ekstensi Trello minimal UI toggle 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

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

Informasi Dasar Ekstensi

Nama Trello minimal UI toggle Trello minimal UI toggle
ID higifdcpoicalcpgmbohdohmcgamabfn
URL Resmi https://chromewebstore.google.com/detail/trello-minimal-ui-toggle/higifdcpoicalcpgmbohdohmcgamabfn
Deskripsi Hide unused elements from Trello board
Ukuran File 232 KB
Jumlah Instalasi 40
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2020-06-08
Tanggal Publikasi 2020-06-07
Penilaian 4.67/5 Total 3 Penilaian
Pengembang terrylidev
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}