Flourish

Simple usability improvements for Blossom.

Flourishคืออะไร?

Flourish เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Simple usability improvements for Blossom."

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

screenshot

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

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

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

                        This extension enhances a few core features of Blossom.

Real-Time Board Updating:
- Allows your Blossom board to update when there is update made on the server. No more needing to hit refresh to see if your board has changed.
- Won't refresh while you're in the middle of moving cards.

Collaborators Box v2.0:
- Transforms the face image tiles into rows of faces with names, sorted alphabetically, making is significantly easier to find a given person.
- Adds a search input to find a particular person quickly


Open source on GitHub (feel free to open an issue/PR!): https://github.com/tonybaroneee/flourish                    

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

ชื่อ Flourish Flourish
ID idakjmhehgdoppgbejfccgcdlcpbknfo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/flourish/idakjmhehgdoppgbejfccgcdlcpbknfo
คำอธิบาย Simple usability improvements for Blossom.
ขนาดไฟล์ 18.93 KB
จำนวนการติดตั้ง 55
เวอร์ชันปัจจุบัน 1.3.0
อัปเดตครั้งล่าสุด 2016-10-26
วันที่เผยแพร่ 2016-10-25
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tonybaroneee/flourish
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Flourish",
    "short_name": "Flourish",
    "version": "1.3.0",
    "description": "Simple usability improvements for Blossom.",
    "icons": {
        "128": "images\/flourish128.png"
    },
    "page_action": {
        "default_icon": "images\/flourish38.png"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.blossom.io\/*",
                "https:\/\/blossom.io\/*"
            ],
            "css": [
                "flourish.css"
            ],
            "js": [
                "extension.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "flourish.js"
    ]
}