Death Counter

Count days until estimated death

Vad är Death Counter?

Death Counter är en Chrome-tillägg utvecklad av https://www.husplushave.dk, och dess huvudfunktion är "Count days until estimated death".

Tilläggsskärmbilder

screenshot

Ladda ner Death Counter-förlängningens CRX-fil

Ladda ner Death Counter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Death Counter Death Counter
ID hidikmikgcjlafnpeajcphlbidkghnmg
Officiell webbadress https://chrome.google.com/webstore/detail/death-counter/hidikmikgcjlafnpeajcphlbidkghnmg
Beskrivning Count days until estimated death
Filstorlek 69.67 KB
Antal Installationer 61
Aktuell Version 1.0
Senast Uppdaterad 2018-08-29
Publiceringsdatum 2018-08-29
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://www.husplushave.dk
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.husplushave.dk/
Stödda Språk 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"
    }
}