Trello minimal UI toggle

Hide unused elements from Trello board

What is Trello minimal UI toggle?

Trello minimal UI toggle is a Chrome extension developed by terrylidev, and its main feature is "Hide unused elements from Trello board".

Extension Screenshots

screenshot
screenshot

Download Trello minimal UI toggle Extension CRX File

Download Trello minimal UI toggle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Trello minimal UI toggle Trello minimal UI toggle
ID higifdcpoicalcpgmbohdohmcgamabfn
Official URL https://chromewebstore.google.com/detail/trello-minimal-ui-toggle/higifdcpoicalcpgmbohdohmcgamabfn
Description Hide unused elements from Trello board
File Size 232 KB
Installation Count 40
Current Version 1.0.0
Last Updated 2020-06-08
Publish Date 2020-06-07
Rating 4.67/5 Total 3 Ratings
Developer terrylidev
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}