Trello minimal UI toggle

Hide unused elements from Trello board

Qu'est-ce que Trello minimal UI toggle ?

Trello minimal UI toggle est une extension Chrome développée par terrylidev, et sa fonction principale est "Hide unused elements from Trello board".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Trello minimal UI toggle

Téléchargez les fichiers d'extension Trello minimal UI toggle au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Trello minimal UI toggle Trello minimal UI toggle
ID higifdcpoicalcpgmbohdohmcgamabfn
URL Officiel https://chromewebstore.google.com/detail/trello-minimal-ui-toggle/higifdcpoicalcpgmbohdohmcgamabfn
Description Hide unused elements from Trello board
Taille du Fichier 232 KB
Nombre d'Installations 40
Version Actuelle 1.0.0
Dernière Mise à Jour 2020-06-08
Date de Publication 2020-06-07
Évaluation 4.67/5 Total 3 Évaluations
Développeur terrylidev
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}