[DEPRECATED] List Layouts for Trello

Allow Trello lists to be displayed vertically or in a grid.

[DEPRECATED] List Layouts for Trelloคืออะไร?

[DEPRECATED] List Layouts for Trello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Natalie Chouinard และคุณลักษณะหลักของมันคือ "Allow Trello lists to be displayed vertically or in a grid."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย [DEPRECATED] List Layouts for Trello

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

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

                        ***DEPRECATED***

This Chrome extension is now deprecated. Please consider these alternatives:

Grid Layout for Trello: https://userstyles.org/styles/271254/grid-layout-for-trello

Vertical Layout for Trello: https://userstyles.org/styles/271256/vertical-layout-for-trello

***DEPRECATED***

The List Layouts for Trello extension adds a button to your Chrome toolbar allowing you to toggle the Trello board layout from horizontal to grid to vertical by clicking the icon.                    

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

ชื่อ [DEPRECATED] List Layouts for Trello [DEPRECATED] List Layouts for Trello
ID aldklnbenbdgfgfbflalmlddkkndgnlc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/deprecated-list-layouts-f/aldklnbenbdgfgfbflalmlddkkndgnlc
คำอธิบาย Allow Trello lists to be displayed vertically or in a grid.
ขนาดไฟล์ 10.65 KB
จำนวนการติดตั้ง 51,027
เวอร์ชันปัจจุบัน 4.0
อัปเดตครั้งล่าสุด 2023-10-31
วันที่เผยแพร่ 2019-07-27
คะแนน 4.63/5 รวมทั้งหมด 192 คะแนน
ผู้พัฒนา Natalie Chouinard
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sudonatalie/layout-trello
URL หน้าช่วยเหลือ https://github.com/sudonatalie/layout-trello/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "[DEPRECATED] List Layouts for Trello",
    "description": "Allow Trello lists to be displayed vertically or in a grid.",
    "version": "4.0",
    "author": "Natalie Chouinard",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/b\/*"
            ],
            "css": [
                "css\/layout.css"
            ],
            "js": [
                "js\/init.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/trello.com\/b\/*",
        "declarativeContent",
        "storage",
        "webNavigation"
    ],
    "page_action": {
        "default_title": "List Layouts for Trello"
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "MacCtrl+Shift+L"
            }
        }
    }
}