Time Viewer for YouTube Live

Chrome Extension for Viewing Time on YouTube Live.

Time Viewer for YouTube Live là gì?

Time Viewer for YouTube Live là một tiện ích mở rộng Chrome được phát triển bởi https://fiahfy.blogspot.com, và tính năng chính của nó là "Chrome Extension for Viewing Time on YouTube Live.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Time Viewer for YouTube Live

Tải xuống các tệp mở rộng Time Viewer for YouTube Live dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        - Display video publishing time.
- Display time on seek bar and chat.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Time Viewer for YouTube Live Time Viewer for YouTube Live
ID cnllmiliafeacdmlngaofjpjaljoolpc
URL Chính Thức https://chromewebstore.google.com/detail/time-viewer-for-youtube-l/cnllmiliafeacdmlngaofjpjaljoolpc
Mô tả Chrome Extension for Viewing Time on YouTube Live.
Kích Thước Tệp 25.52 KB
Số Lần Cài Đặt 249
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2023-01-01
Ngày Phát Hành 2021-06-21
Đánh Giá 4.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://fiahfy.blogspot.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "all_frames": false,
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ]
        },
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/live_chat_replay*"
            ],
            "all_frames": true,
            "js": [
                "content-script-frame.js"
            ],
            "css": [
                "content-script-frame.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.youtube.com\/*"
    ],
    "name": "Time Viewer for YouTube Live",
    "description": "Chrome Extension for Viewing Time on YouTube Live.",
    "version": "0.0.6"
}