Day Counter

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

Co je Day Counter?

Day Counter je rozšíření Chrome vyvinuté Josh, a jeho hlavní funkcí je „Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Day Counter

Stáhněte si soubory rozšíření Day Counter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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?                    

Základní Informace o Rozšíření

Název Day Counter Day Counter
ID glnbjmdjpcccpdlckpenknmacmgbecpa
Oficiální URL https://chromewebstore.google.com/detail/day-counter/glnbjmdjpcccpdlckpenknmacmgbecpa
Popis Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.
Velikost souboru 21.39 KB
Počet instalací 3,258
Aktuální Verze 1.0.1
Poslední Aktualizace 2013-05-21
Datum Vydání 2013-05-21
Hodnocení 4.35/5 Celkem 54 Hodnocení
Vývojář Josh
Typ Platby free
Podporované Jazyky 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"
}