Death Counter

Count days until estimated death

What is Death Counter?

Death Counter is a Chrome extension developed by https://www.husplushave.dk, and its main feature is "Count days until estimated death".

Extension Screenshots

screenshot

Download Death Counter Extension CRX File

Download Death Counter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Death Counter Death Counter
ID hidikmikgcjlafnpeajcphlbidkghnmg
Official URL https://chrome.google.com/webstore/detail/death-counter/hidikmikgcjlafnpeajcphlbidkghnmg
Description Count days until estimated death
File Size 69.67 KB
Installation Count 61
Current Version 1.0
Last Updated 2018-08-29
Publish Date 2018-08-29
Rating 5.00/5 Total 1 Ratings
Developer https://www.husplushave.dk
Email [email protected]
Payment Type free
Extension Website https://www.husplushave.dk/
Supported Languages 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"
    }
}