[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은(는) Natalie Chouinard에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow Trello lists to be displayed vertically or in a grid."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

[DEPRECATED] List Layouts for Trello 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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