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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}