Death Counter

Count days until estimated death

Co to jest Death Counter?

Death Counter to rozszerzenie Chrome opracowane przez https://www.husplushave.dk, a jego główną funkcją jest „Count days until estimated death”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Death Counter

Pobierz pliki rozszerzeń Death Counter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Death Counter Death Counter
ID hidikmikgcjlafnpeajcphlbidkghnmg
Oficjalny URL https://chrome.google.com/webstore/detail/death-counter/hidikmikgcjlafnpeajcphlbidkghnmg
Opis Count days until estimated death
Rozmiar pliku 69.67 KB
Liczba instalacji 61
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-08-29
Data Publikacji 2018-08-29
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://www.husplushave.dk
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.husplushave.dk/
Obsługiwane Języki 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"
    }
}