Web Time Tracker

Track and analyze your browser usage to help you manage your time better.

Web Time Tracker란 무엇입니까?

Web Time Tracker은(는) 9yearfish에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Track and analyze your browser usage to help you manage your time better."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Web Time Tracker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        We always spend too much time online, so I made a little tool that tracks the time spent per day on each website on the browser.

 ⭐️You can set a daily usage time limit for your website, beyond which you will not be able to access the site.

⭐️ You will see
 ⭐️ 1. Time spent browsing on each site, in percentage
 ⭐️ 2. More or less time spent compared to the previous time period
 ⭐️ 3. The site consumed the most time.
 ⭐️ 4. A colorful graphical format tells you the details.

We will develop more good features in the future and would like to get your comments and suggestions.                    

확장 프로그램 기본 정보

이름 Web Time Tracker Web Time Tracker
ID bjkanoldnecfjjlmkpdidanbbfjgignh
공식 URL https://chromewebstore.google.com/detail/web-time-tracker/bjkanoldnecfjjlmkpdidanbbfjgignh
설명 Track and analyze your browser usage to help you manage your time better.
파일 크기 1.08 MB
설치 횟수 42
현재 버전 0.0.3
최근 업데이트 2022-04-23
출시 날짜 2022-04-19
개발자 9yearfish
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://twitter.com/9yearfish
지원되는 언어 en,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_title__",
    "version": "0.0.3",
    "description": "Track and analyze your browser usage to help you manage your time better.",
    "author": "9yearfish",
    "homepage_url": "https:\/\/twitter.com\/9yearfish",
    "default_locale": "en",
    "action": {
        "default_icon": {
            "16": "assets\/time.png",
            "48": "assets\/time.png",
            "128": "assets\/time.png"
        },
        "default_title": "__MSG_title__",
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "16": "assets\/time.png",
        "48": "assets\/time.png",
        "128": "assets\/time.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/content-script-reloader-d5a77d8e.js",
                "content-scripts\/import-main.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "permissions": [
        "tabs",
        "idle",
        "storage",
        "scripting",
        "alarms",
        "unlimitedStorage"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "chunks\/*-*.js",
                "content-scripts\/main.js"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}