Day Counter

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

Cos'è Day Counter?

Day Counter è un'estensione di Chrome sviluppata da Josh, e la sua funzione principale è "Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Day Counter

Scarica i file di estensione Day Counter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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?                    

Informazioni di Base sull'Estensione

Nome Day Counter Day Counter
ID glnbjmdjpcccpdlckpenknmacmgbecpa
URL Ufficiale https://chromewebstore.google.com/detail/day-counter/glnbjmdjpcccpdlckpenknmacmgbecpa
Descrizione Displays the number of days since a given date in the toolbar. Right click icon->Options to change date.
Dimensione del File 21.39 KB
Conteggio Installazioni 3,258
Versione Corrente 1.0.1
Ultimo Aggiornamento 2013-05-21
Data di Pubblicazione 2013-05-21
Valutazione 4.35/5 Totale 54 Valutazioni
Sviluppatore Josh
Tipo di Pagamento free
Lingue Supportate 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"
}