Full screen card view for Trello

Makes the card and edit window in Trello.com full screen

什麼是Full screen card view for Trello?

Full screen card view for Trello是由https://justin.kelly.org.au開發的Chrome擴展程式,該擴展的主要功能是“Makes the card and edit window in Trello.com full screen”。

擴展截圖

screenshot
screenshot

下載Full screen card view for Trello擴展crx文件

下載Full screen card view for Trello擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Converts the small Trello card view/edit windows to be full screen height and width.

If you use trello.com alot like myself, and add lots (pages) of information in the card description section you’ll find the small card window a real pain to use.

To fix this I whipped up a quick chrome extension to make the card edit window full screen, 

More info:
* http://blog.justin.kelly.org.au/trello-big-edit/

Code on GitHub:
* https://github.com/justinkelly/trello_big_edit                    

擴展基本資訊

名稱 Full screen card view for Trello Full screen card view for Trello
ID iakcnnmjbdoemkjecojadhpinebnkipm
官方網址 https://chromewebstore.google.com/detail/full-screen-card-view-for/iakcnnmjbdoemkjecojadhpinebnkipm
簡介 Makes the card and edit window in Trello.com full screen
檔案大小 5.92 KB
安裝次數 1,820
目前版本 3
更新時間 2013-08-09
上架時間 2013-08-08
評分 4.38/5 共 16 次評分
開發者 https://justin.kelly.org.au
付費類型 free
擴展官網 https://github.com/justinkelly/trello_big_edit
說明頁面URL https://github.com/justinkelly/trello_big_edit/issues
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Full screen card view for Trello",
    "version": "3",
    "manifest_version": 2,
    "description": "Makes the card and  edit window in Trello.com full screen",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "trello_big_edit.user.js"
            ]
        }
    ]
}