[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ファイルをダウンロード

[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
Eメール [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"
            }
        }
    }
}