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文件

下載Day Counter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
}