Trello List Filter

Filters Trello Lists based on their titles

Trello List Filterคืออะไร?

Trello List Filter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย anthonyastige และคุณลักษณะหลักของมันคือ "Filters Trello Lists based on their titles"

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

screenshot
screenshot
screenshot

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

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

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

                        Filters your Trello Lists by their titles

* Filters instantly as you type
* Automatically saves settings
* Applies across all open Trello Boards

Includes advanced options such as

* Blacklist vs Whitelist
* Matching modes: Contains/Exact Match/Regex
* Case sensitivity (on / off)                    

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

ชื่อ Trello List Filter Trello List Filter
ID nejmlobcaghdppkjgihmmeigobhgecnn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/trello-list-filter/nejmlobcaghdppkjgihmmeigobhgecnn
คำอธิบาย Filters Trello Lists based on their titles
ขนาดไฟล์ 6.4 KB
จำนวนการติดตั้ง 23
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2017-05-04
วันที่เผยแพร่ 2017-05-04
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา anthonyastige
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello List Filter",
    "description": "Filters Trello Lists based on their titles",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "js": [
                "hider.js"
            ],
            "run_at": "document_end"
        }
    ]
}