Day Counter

Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.

Day Counter란 무엇입니까?

Day Counter은(는) Josh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays the number of days since a given date in the toolbar. Right click icon->Options to change date."입니다.

확장 프로그램 스크린샷

screenshot

Day Counter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It shows the number of days since a specified date in the toolbar.

It is kind of like a timer/stopwatch but just for the days between dates.

Good for when you're trying to break a habit, and you want to see how many days you have gone (ie. looking at facebook while working).

This also syncs between browsers, you know what I mean.  Like you can be in one browser, and then get on another computer and login to chrome, and the date will sync, so you don't have to keep it updated.  Like it saves it on the internet, so it can be accessed anywhere, you know?  Like it's something that helps you manage stuff between computers and stuff, get it?                    

확장 프로그램 기본 정보

이름 Day Counter Day Counter
ID glnbjmdjpcccpdlckpenknmacmgbecpa
공식 URL https://chromewebstore.google.com/detail/day-counter/glnbjmdjpcccpdlckpenknmacmgbecpa
설명 Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.
파일 크기 21.39 KB
설치 횟수 3,258
현재 버전 1.0.1
최근 업데이트 2013-05-21
출시 날짜 2013-05-21
평점 4.35/5 총 54 개의 평점
개발자 Josh
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "browser_action": {
        "default_icon": "icon16.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "incognito": "split",
    "manifest_version": 2,
    "name": "Day Counter",
    "version": "1.0.1"
}