Death Counter

Count days until estimated death

什么是Death Counter?

Death Counter是由https://www.husplushave.dk开发的Chrome扩展程序,该扩展的主要功能是“Count days until estimated death”。

扩展截图

screenshot

下载Death Counter扩展crx文件

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