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
官方網址 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"
    }
}