Inbox Zero Progress Bar

progress bar

Inbox Zero Progress Bar란 무엇입니까?

Inbox Zero Progress Bar은(는) http://weekplan.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "progress bar"입니다.

확장 프로그램 스크린샷

screenshot

Inbox Zero Progress Bar 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Keep track of your progress towards Inbox Zero within Gmail!                    

확장 프로그램 기본 정보

이름 Inbox Zero Progress Bar Inbox Zero Progress Bar
ID edehcddfcmobknfgoaodppjdlobfidld
공식 URL https://chrome.google.com/webstore/detail/inbox-zero-progress-bar/edehcddfcmobknfgoaodppjdlobfidld
설명 progress bar
파일 크기 43.5 KB
설치 횟수 48
현재 버전 0.1
최근 업데이트 2016-01-30
출시 날짜 2016-01-30
평점 3.50/5 총 4 개의 평점
개발자 http://weekplan.net
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://wise.pm/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inbox Zero Progress Bar",
    "version": "0.1",
    "manifest_version": 2,
    "description": "progress bar",
    "icons": {
        "64": "logo.png",
        "32": "logo.png",
        "16": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "css": [
                "inline_app\/css\/progress.css"
            ],
            "js": [
                "inline_app\/js\/lib\/jquery.js",
                "contentscript.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        "https:\/\/mail.google.com\/*"
    ],
    "web_accessible_resources": [
        "inline_app\/js\/script.js"
    ]
}