Death Counter

Count days until estimated death

Hvad er Death Counter?

Death Counter er en Chrome-udvidelse udviklet af https://www.husplushave.dk, og dens hovedfunktion er "Count days until estimated death".

Udvidelsesskærmbilleder

screenshot

Download Death Counter-udvidelses-CRX-fil

Download Death Counter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Death Counter Death Counter
ID hidikmikgcjlafnpeajcphlbidkghnmg
Officiel URL https://chrome.google.com/webstore/detail/death-counter/hidikmikgcjlafnpeajcphlbidkghnmg
Beskrivelse Count days until estimated death
Filstørrelse 69.67 KB
Antal Installationer 61
Nuværende Version 1.0
Senest Opdateret 2018-08-29
Udgivelsesdato 2018-08-29
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler https://www.husplushave.dk
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.husplushave.dk/
Understøttede Sprog 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"
    }
}