Death Counter

Count days until estimated death

Apa itu Death Counter?

Death Counter adalah ekstensi Chrome yang dikembangkan oleh https://www.husplushave.dk, dan fitur utamanya adalah "Count days until estimated death".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Death Counter

Unduh file ekstensi Death Counter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Death Counter Death Counter
ID hidikmikgcjlafnpeajcphlbidkghnmg
URL Resmi https://chrome.google.com/webstore/detail/death-counter/hidikmikgcjlafnpeajcphlbidkghnmg
Deskripsi Count days until estimated death
Ukuran File 69.67 KB
Jumlah Instalasi 61
Versi Saat Ini 1.0
Terakhir Diperbarui 2018-08-29
Tanggal Publikasi 2018-08-29
Penilaian 5.00/5 Total 1 Penilaian
Pengembang https://www.husplushave.dk
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.husplushave.dk/
Bahasa yang Didukung 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"
    }
}