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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}