Browser Screen Time

Keep track of the amount of time you spend on the internet

什麼是Browser Screen Time?

Browser Screen Time是由aaaeka開發的Chrome擴展程式,該擴展的主要功能是“Keep track of the amount of time you spend on the internet”。

擴展截圖

screenshot

下載Browser Screen Time擴展crx文件

下載Browser Screen Time擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Keep track of the amount of time spent on the internet with this simple extension.

The information is displayed in a simple chart to make viewing time spent easy. You can see time spent in a single day or a specific interval of time.

This add-on is meant to fix the problems with the "Mind the time" add-on. For example, watching videos will not stop the timer from running.

Help develop browser screen time: https://github.com/aaaeka/browser-screen-time                    

擴展基本資訊

名稱 Browser Screen Time Browser Screen Time
ID nlkcecddkejakmaipagbcemeohfomedn
官方網址 https://chromewebstore.google.com/detail/browser-screen-time/nlkcecddkejakmaipagbcemeohfomedn
簡介 Keep track of the amount of time you spend on the internet
檔案大小 757 KB
安裝次數 9,943
目前版本 1.2.0
更新時間 2023-09-15
上架時間 2021-12-15
評分 4.63/5 共 8 次評分
開發者 aaaeka
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/aaaeka/browser-screen-time
說明頁面URL https://github.com/aaaeka/browser-screen-time
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Browser Screen Time",
    "short_name": "Screen Time",
    "version": "1.2.0",
    "description": "Keep track of the amount of time you spend on the internet",
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Screen Time",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/16px.png",
            "32": "assets\/icons\/32px.png",
            "64": "assets\/icons\/64px.png",
            "128": "assets\/icons\/128px.png",
            "256": "assets\/icons\/256px.png",
            "512": "assets\/icons\/512px.png",
            "1024": "assets\/icons\/1024px.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "videoCheck.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "assets\/icons\/16px.png",
        "32": "assets\/icons\/32px.png",
        "64": "assets\/icons\/64px.png",
        "128": "assets\/icons\/128px.png",
        "256": "assets\/icons\/256px.png",
        "512": "assets\/icons\/512px.png",
        "1024": "assets\/icons\/1024px.png"
    },
    "permissions": [
        "storage",
        "idle",
        "tabs",
        "notifications"
    ],
    "manifest_version": 3
}