Trello List Resizer

Simple extension for wider Trello lists.

Trello List Resizerคืออะไร?

Trello List Resizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย bensmithperez และคุณลักษณะหลักของมันคือ "Simple extension for wider Trello lists."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Trello List Resizer

ดาวน์โหลดไฟล์ส่วนขยาย Trello List Resizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        This plugin resizes Trello lists from 270px to 400px... Just add to chrome and that's it!! :)


Code at: https://github.com/bensmithperez/ChromeExtensions/tree/master/Trello%20List%20Resizer                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Trello List Resizer Trello List Resizer
ID icfnpgdggbhlidgcefjphhbpnklakobm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/trello-list-resizer/icfnpgdggbhlidgcefjphhbpnklakobm
คำอธิบาย Simple extension for wider Trello lists.
ขนาดไฟล์ 3.15 KB
จำนวนการติดตั้ง 450
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2017-03-24
วันที่เผยแพร่ 2017-03-24
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา bensmithperez
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello List Resizer",
    "description": "Simple extension for wider Trello lists.",
    "author": "Benjamin Smith",
    "version": "0.1",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.trello.com\/*"
            ],
            "css": [
                "estiloNuevo.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "*:\/\/*.trello.com\/*"
    ]
}