Death Counter

Count days until estimated death

Was ist Death Counter?

Death Counter ist eine Chrome-Erweiterung, die von https://www.husplushave.dk entwickelt wurde, und ihr Hauptmerkmal ist "Count days until estimated death".

Erweiterungsscreenshots

screenshot

Death Counter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Death Counter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Death Counter Death Counter
ID hidikmikgcjlafnpeajcphlbidkghnmg
Offizielle URL https://chrome.google.com/webstore/detail/death-counter/hidikmikgcjlafnpeajcphlbidkghnmg
Beschreibung Count days until estimated death
Dateigröße 69.67 KB
Installationsanzahl 61
Aktuelle Version 1.0
Letztes Update 2018-08-29
Veröffentlichungsdatum 2018-08-29
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://www.husplushave.dk
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.husplushave.dk/
Unterstützte Sprachen 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"
    }
}