Styling Trello

This extension makes certain Trello forms more readable and therefore useful.

Styling Trelloคืออะไร?

Styling Trello เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kainoto.com และคุณลักษณะหลักของมันคือ "This extension makes certain Trello forms more readable and therefore useful."

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

screenshot

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

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

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

                        For users of Trello who have hard time reading the cards descriptions and finding the important details. It is a first version and only adjusting few things on the cards. As for example, moving the buttons out of the main dialog window.                    

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

ชื่อ Styling Trello Styling Trello
ID igddgiapehjmgfiionknahkilcbglfpa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/styling-trello/igddgiapehjmgfiionknahkilcbglfpa
คำอธิบาย This extension makes certain Trello forms more readable and therefore useful.
ขนาดไฟล์ 94.38 KB
จำนวนการติดตั้ง 154
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2016-04-30
วันที่เผยแพร่ 2016-04-30
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://kainoto.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Styling Trello",
    "description": "This extension makes certain Trello forms more readable and therefore useful.",
    "author": "Kainoto",
    "icons": {
        "128": "icon-128.png",
        "64": "icon-64.png",
        "48": "icon-48.png",
        "32": "icon-32.png",
        "16": "icon-16.png"
    },
    "version": "1.1",
    "permissions": [
        "activeTab"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "bg.js"
        ],
        "all_frames": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.trello.com\/*"
            ],
            "css": [
                "tstyle.css"
            ],
            "js": [
                "tstyle.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Styling (making readable) Trello"
    }
}