Death Counter

Count days until estimated death

Wat is Death Counter?

Death Counter is een Chrome-extensie ontwikkeld door https://www.husplushave.dk, en de belangrijkste functie is "Count days until estimated death".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Death Counter

Download Death Counter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Death Counter Death Counter
ID hidikmikgcjlafnpeajcphlbidkghnmg
Officiële URL https://chrome.google.com/webstore/detail/death-counter/hidikmikgcjlafnpeajcphlbidkghnmg
Beschrijving Count days until estimated death
Bestandsgrootte 69.67 KB
Aantal Installaties 61
Huidige Versie 1.0
Laatst Bijgewerkt 2018-08-29
Publicatiedatum 2018-08-29
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://www.husplushave.dk
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.husplushave.dk/
Ondersteunde Talen 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"
    }
}