Trello custom progress bar

Customize you Trello progress bar

Trello custom progress bar란 무엇입니까?

Trello custom progress bar은(는) topaztee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize you Trello progress bar"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Trello custom progress bar 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Change the boring blue progress bar to something else.
To change the progress bar, right click the extension icon, and choose options.                    

확장 프로그램 기본 정보

이름 Trello custom progress bar Trello custom progress bar
ID afbaaokfpieehjeffeceajdopnlempob
공식 URL https://chromewebstore.google.com/detail/trello-custom-progress-ba/afbaaokfpieehjeffeceajdopnlempob
설명 Customize you Trello progress bar
파일 크기 50.44 KB
설치 횟수 46
현재 버전 1.2
최근 업데이트 2019-04-29
출시 날짜 2019-04-29
평점 2.33/5 총 3 개의 평점
개발자 topaztee
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Trello custom progress bar",
    "short_name": "Trello custom progress bar",
    "description": "Customize you Trello progress bar",
    "version": "1.2",
    "permissions": [
        "tabs",
        "storage",
        "webNavigation"
    ],
    "browser_action": {
        "default_title": "blahblah",
        "default_icon": {
            "32": "32.png"
        }
    },
    "background": {
        "matches": [
            "*:\/\/trello.com\/c\/*"
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/trello.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.png"
    ],
    "options_page": "options.html"
}