Death Counter

Count days until estimated death

Death Counter là gì?

Death Counter là một tiện ích mở rộng Chrome được phát triển bởi https://www.husplushave.dk, và tính năng chính của nó là "Count days until estimated death".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Death Counter

Tải xuống các tệp mở rộng Death Counter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Death Counter Death Counter
ID hidikmikgcjlafnpeajcphlbidkghnmg
URL Chính Thức https://chrome.google.com/webstore/detail/death-counter/hidikmikgcjlafnpeajcphlbidkghnmg
Mô tả Count days until estimated death
Kích Thước Tệp 69.67 KB
Số Lần Cài Đặt 61
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-08-29
Ngày Phát Hành 2018-08-29
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://www.husplushave.dk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.husplushave.dk/
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}