Uptime

Tracks browser uptime

什么是Uptime?

Uptime是由aquilax开发的Chrome扩展程序,该扩展的主要功能是“Tracks browser uptime”。

扩展截图

screenshot

下载Uptime扩展crx文件

下载Uptime扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Browser up-time tracker.

Source code can be found here: https://github.com/aquilax/uptime-chrome . Feel free to remix and modify.

# Changelog

v0.5 Removed GA integration
v0.4 Switched to using the more stable chrome.storage.local API to store the startup time.
v0.3 Switched back to non-persistent version. Now the extension won't consume memory and will only on startup and when the icon is clicked;
v0.2 Switched to persistent extension to insure the initial time snatch                    

扩展基本信息

名称 Uptime Uptime
ID paeeejhdehbfigkcgcooekhafdpipdfp
官方URL https://chromewebstore.google.com/detail/uptime/paeeejhdehbfigkcgcooekhafdpipdfp
简介 Tracks browser uptime
文件大小 11.52 KB
安装次数 118
当前版本 0.5
更新时间 2023-09-11
上架时间 2019-09-29
开发者 aquilax
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Uptime",
    "short_name": "Browser Uptime",
    "version": "0.5",
    "description": "Tracks browser uptime",
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_19.png"
    },
    "background": {
        "scripts": [
            "uptime.js"
        ],
        "persistent": false
    },
    "permissions": [
        "notifications",
        "storage"
    ],
    "web_accessible_resources": [
        "icon_48.png"
    ]
}