Death Counter

Count days until estimated death

ما هو Death Counter؟

Death Counter هو إضافة Chrome تم تطويرها بواسطة https://www.husplushave.dk، والميزة الرئيسية لها هي "Count days until estimated death".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Death Counter

قم بتنزيل ملفات الامتداد Death Counter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Death Counter Death Counter
ID hidikmikgcjlafnpeajcphlbidkghnmg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/death-counter/hidikmikgcjlafnpeajcphlbidkghnmg
الوصف Count days until estimated death
حجم الملف 69.67 KB
عدد التثبيتات 61
النسخة الحالية 1.0
آخر تحديث 2018-08-29
تاريخ النشر 2018-08-29
تقييم 5.00/5 مجموع تقييمات 1
المطور https://www.husplushave.dk
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.husplushave.dk/
اللغات المدعومة 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"
    }
}