Beautify for Trello

Add colors, background images and more to your Trello boards

Beautify for Trelloคืออะไร?

Beautify for Trello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.mindofmoses.com และคุณลักษณะหลักของมันคือ "Add colors, background images and more to your Trello boards"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Beautify lets you add a personal touch to your boards on Trello.com (Trello is "a collaboration tool that organizes your projects into boards.")

As of release (v1.4), the extension lets you choose new colors for the Trello header and board.  Also, you can "upload" a background image from your computer to really make your boards stand out.  Finally, there are a few usability toggles to make reading Trello easier.

As an added bonus, this extension is presented in an unobtrusive way that matches Trello's existing menu style!

** release v1.3 Introduces card coloring, based on the labels you attach to a card **

** release v1.4 addresses a few bugs & introduces usability options, like 'shadow mode' **

Browse the screenshots to get a feel for the types changes you can make with this extention. By all means, leave comments & ratings here on the extension page - it's worth noting, however, that bug support and extended community feedback will be handled on the public trello board.

Also, please know that this extension was not developed by or in cooperation with the good people at FogCreek (the makers of Trello).  This is a hobby project.

Thanks!                    

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

ชื่อ Beautify for Trello Beautify for Trello
ID ppmoihbfiilgkkgcogbblhhanjjaocil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/beautify-for-trello/ppmoihbfiilgkkgcogbblhhanjjaocil
คำอธิบาย Add colors, background images and more to your Trello boards
ขนาดไฟล์ 77.16 KB
จำนวนการติดตั้ง 4,838
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2013-07-22
วันที่เผยแพร่ 2013-07-22
คะแนน 2.77/5 รวมทั้งหมด 57 คะแนน
ผู้พัฒนา https://www.mindofmoses.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://thoughts.mindofmoses.com/read/customize-your-trello-boards-with-beautify
URL หน้าช่วยเหลือ https://trello.com/board/b-trello-beautify/4fb2788823a3c9e85f274028
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Beautify for Trello",
    "description": "Add colors, background images and more to your Trello boards",
    "homepage_url": "http:\/\/www.mindofmoses.com\/blog\/customize-your-trello-boards-with-beautify",
    "version": "1.4",
    "permissions": [
        "tabs",
        "https:\/\/trello.com\/board\/*",
        "unlimitedStorage"
    ],
    "page_action": {
        "default_icon": {
            "19": "images\/logo_small.png",
            "38": "images\/logo_big.png"
        },
        "default_title": "Beautify for Trello"
    },
    "icons": {
        "16": "images\/app_logo_tiny.png",
        "48": "images\/app_logo_small.png",
        "128": "images\/app_logo_large.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "images\/app_logo.gif",
        "images\/arches.png",
        "images\/twitter_newbird_white.png",
        "arrow.gif",
        "cross.gif",
        "hs.png",
        "hv.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jscolor.js",
                "angular.min.js",
                "control_ui.js",
                "inject_ui.js"
            ],
            "css": [
                "beautify_trello.css"
            ],
            "run_at": "document_end"
        }
    ]
}