Trello Checklist Plus

Extends the Trello Checklist with usefull functions

Trello Checklist Plus란 무엇입니까?

Trello Checklist Plus은(는) b.geissler89에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Extends the Trello Checklist with usefull functions"입니다.

확장 프로그램 스크린샷

screenshot

Trello Checklist Plus 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        -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"
    ]
}