Death Counter

Count days until estimated death

Cos'è Death Counter?

Death Counter è un'estensione di Chrome sviluppata da https://www.husplushave.dk, e la sua funzione principale è "Count days until estimated death".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Death Counter

Scarica i file di estensione Death 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

                        A small counter where you can enter the estimated date of your death and it will then show you have many days you have to live.

The counter is meant to help you focus on and value each day of your life and do the things that are most important to you.                    

Informazioni di Base sull'Estensione

Nome Death Counter Death Counter
ID hidikmikgcjlafnpeajcphlbidkghnmg
URL Ufficiale https://chrome.google.com/webstore/detail/death-counter/hidikmikgcjlafnpeajcphlbidkghnmg
Descrizione Count days until estimated death
Dimensione del File 69.67 KB
Conteggio Installazioni 61
Versione Corrente 1.0
Ultimo Aggiornamento 2018-08-29
Data di Pubblicazione 2018-08-29
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://www.husplushave.dk
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.husplushave.dk/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Death Counter",
    "description": "Count days until estimated death",
    "version": "1.0",
    "icons": {
        "48": "icon_default.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon_default.png",
        "default_popup": "popup.html"
    }
}