Trello Clean Mode

This extension strips down Trello boards to eliminate noise

ما هو Trello Clean Mode؟

Trello Clean Mode هو إضافة Chrome تم تطويرها بواسطة ryan.m.tracey، والميزة الرئيسية لها هي "This extension strips down Trello boards to eliminate noise".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Trello Clean Mode

قم بتنزيل ملفات الامتداد Trello Clean Mode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        A Chrome extension that allows you to reduce the clutter of the Trello interface. 

You can remove member icons, labels, badges, stickers, and cover images.                    

معلومات أساسية عن التمديد

الاسم Trello Clean Mode Trello Clean Mode
ID ikgnoihnldgoanbjpbefnoopncbdcofa
عنوان URL الرسمي https://chrome.google.com/webstore/detail/trello-clean-mode/ikgnoihnldgoanbjpbefnoopncbdcofa
الوصف This extension strips down Trello boards to eliminate noise
حجم الملف 75.08 KB
عدد التثبيتات 100
النسخة الحالية 1.1
آخر تحديث 2017-05-25
تاريخ النشر 2017-05-25
تقييم 5.00/5 مجموع تقييمات 2
المطور ryan.m.tracey
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello Clean Mode",
    "description": "This extension strips down Trello boards to eliminate noise",
    "version": "1.1",
    "icons": {
        "128": "icon_100.png"
    },
    "background": {
        "persistence": true,
        "scripts": [
            "jquery.js",
            "main.js",
            "navigation-handler.js",
            "options.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "main.css"
            ],
            "js": [
                "jquery.js",
                "dom.js"
            ],
            "matches": [
                "https:\/\/*.trello.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "webNavigation",
        "tabs",
        "*:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "",
        "default_icon": "icon_100.png",
        "default_popup": "popup.html"
    }
}