Trello Checklist Plus

Extends the Trello Checklist with usefull functions

Trello Checklist Plusคืออะไร?

Trello Checklist Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย b.geissler89 และคุณลักษณะหลักของมันคือ "Extends the Trello Checklist with usefull functions"

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

screenshot

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

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

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

                        -Feature to extrude a Checklist Item into a own Card and create a back-link without deleting the actual.                    

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

ชื่อ Trello Checklist Plus Trello Checklist Plus
ID lgpellhflojpkpbhiehgfeoiodbhpeil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/trello-checklist-plus/lgpellhflojpkpbhiehgfeoiodbhpeil
คำอธิบาย Extends the Trello Checklist with usefull functions
ขนาดไฟล์ 311 KB
จำนวนการติดตั้ง 53
เวอร์ชันปัจจุบัน 0.0.12
อัปเดตครั้งล่าสุด 2016-07-20
วันที่เผยแพร่ 2016-07-20
คะแนน 2.88/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา b.geissler89
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.web-ben.de
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello Checklist Plus",
    "author": "Benjamin Gei\u00dfler",
    "short_name": "TC+",
    "version": "0.0.12",
    "manifest_version": 2,
    "description": "Extends the Trello Checklist with usefull functions",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "index.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/api.trello.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/trello.com\/*",
                "https:\/\/trello.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/trello.com\/1\/authorize?*",
                "http:\/\/trello.com\/1\/authorize?*"
            ],
            "js": [
                "bower_components\/jQuery\/dist\/jquery.js",
                "scripts\/contentscript.js"
            ]
        },
        {
            "matches": [
                "https:\/\/trello.com\/1\/OAuthAuthorizeToken*"
            ],
            "js": [
                "background\/inject-workaround.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "background\/chrome_ex_oauth.html"
    ],
    "permissions": [
        "tabs",
        "https:\/\/trello.com\/1\/OAuthGetRequestToken",
        "https:\/\/trello.com\/1\/OAuthAuthorizeToken",
        "https:\/\/trello.com\/1\/OAuthGetAccessToken"
    ]
}