Watchtime Tracker

Track your activity on Youtube and Twitch

Watchtime Tracker란 무엇입니까?

Watchtime Tracker은(는) Lucas에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Track your activity on Youtube and Twitch"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Unlock your YouTube and Twitch viewing habits with this Chrome extension! Seamlessly track your watch time, video count, and more, all synced across your devices.

For YouTube:

- Monitor your actual viewing time.
- Keep track of your video count.
- Discover your Top 10 channels.
- View your average daily watch time.

For Twitch:

- Track your watch time for each streamer.

Keep all your statistics at your fingertips across multiple platforms with a handy sync feature.                    

확장 프로그램 기본 정보

이름 Watchtime Tracker Watchtime Tracker
ID boabmhiakmbbkgjcekpmbihapljoaioc
공식 URL https://chromewebstore.google.com/detail/watchtime-tracker/boabmhiakmbbkgjcekpmbihapljoaioc
설명 Track your activity on Youtube and Twitch
파일 크기 587 KB
설치 횟수 6,632
현재 버전 2.0.6
최근 업데이트 2024-02-10
출시 날짜 2020-09-24
평점 4.09/5 총 69 개의 평점
개발자 Lucas
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://lucask.dev/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Watchtime Tracker",
    "version": "2.0.6",
    "author": "xD33m",
    "minimum_chrome_version": "88",
    "icons": {
        "16": "assets\/icons\/favicon-16.png",
        "32": "assets\/icons\/favicon-32.png",
        "48": "assets\/icons\/favicon-48.png",
        "64": "assets\/icons\/favicon-64.png",
        "128": "assets\/icons\/favicon-128.png"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAozQju+yc2W58hKVFDMWJRqo7EwV02i8b3LXMbQ0S7j+1pSoCzgMNFwZTi6GN2vMRcVEZ\/3yWdC+3KbHGqxtDy3Grmy8UHajoHQ4XAze+\/JT6ZXKs4rN7y1rRB767pBA6pUbMyHiQ2A3YaKr4zW7JslbcFWt6\/DebAoZfXwtio+D8BX1aKtMJrJBkr3nP48ftd92arvxb50fe9CQE5crcCZh6co338rIjEwV4+MpUjuQIzaATmhqkqo1nDMhsFiyXKGThUO77bLlYbzF\/7Z5Se9XJzp3lePrupdxSyX0YSUFpKtXki0MzVQ9+tGZ8c3oUBwkkuZPDJEeHY3qvpDkgIQIDAQAB",
    "description": "Track your activity on Youtube and Twitch",
    "homepage_url": "https:\/\/analytics.lucask.dev\/",
    "short_name": "Watchtime Tracker",
    "permissions": [
        "storage",
        "tabs",
        "identity"
    ],
    "oauth2": {
        "client_id": "800771478396-ubhjoqlgjmlf0th9t6i3h4mrfj73mn3q.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "optional_permissions": [
        "downloads"
    ],
    "host_permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.twitch.tv\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/favicon-16.png",
            "32": "assets\/icons\/favicon-32.png",
            "48": "assets\/icons\/favicon-48.png",
            "64": "assets\/icons\/favicon-64.png",
            "128": "assets\/icons\/favicon-128.png"
        },
        "default_title": "WatchtimeTracker"
    },
    "background": {
        "service_worker": "js\/background.bundle.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/youtubeHook.bundle.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "use_dynamic_url": false
        },
        {
            "resources": [
                "js\/twitchHook.bundle.js"
            ],
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "use_dynamic_url": false
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}