Tube Chip

Speed up streaming on your browser with multithreading and hardware optimization.

Tube Chip là gì?

Tube Chip là một tiện ích mở rộng Chrome được phát triển bởi https://tubechip.art, và tính năng chính của nó là "Speed up streaming on your browser with multithreading and hardware optimization.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tube Chip

Tải xuống các tệp mở rộng Tube Chip 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

                        The Chrome Extension named "Tube Chip" is designed to accelerate and improve the performance of video streaming on websites. When the user navigates to a website that contains videos, the extension detects the video format (M3U8, html, javascript, iframe player, streaming formats), and parallel processes the segmented streams using multithreading. Each segmented stream is assigned to a separate service worker, which allows the extension to preload, accelerate and fully buffer the stream. 

The extension also merges the Youtube Player API and hardware concurrency to detect the number of cores in the user's processor and allocate all resources to Youtube. This ensures that the video playback is smooth and does not lag. 

To use the extension, the user simply needs to click on the "Tube Chip" icon and download and it will be applied automatically when viewing stream. To uninstall go into chrome://extensions and press Remove.                    

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

Tên Tube Chip Tube Chip
ID cddmhclamefjfhbleaollngmkhjnfmnl
URL Chính Thức https://chromewebstore.google.com/detail/tube-chip/cddmhclamefjfhbleaollngmkhjnfmnl
Mô tả Speed up streaming on your browser with multithreading and hardware optimization.
Kích Thước Tệp 27.07 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 2.2.1
Cập Nhật Lần Cuối 2023-06-26
Ngày Phát Hành 2023-03-31
Nhà Phát Triển https://tubechip.art
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",
    "name": "Tube Chip",
    "description": "Speed up streaming on your browser with multithreading and hardware optimization.",
    "version": "2.2.1",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "background.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}