Comments Sidebar for Youtube

Allows you to watch videos and read comments at the same time on Youtube.

Comments Sidebar for Youtube là gì?

Comments Sidebar for Youtube là một tiện ích mở rộng Chrome được phát triển bởi tberghuis, và tính năng chính của nó là "Allows you to watch videos and read comments at the same time on Youtube.".

Ả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 Comments Sidebar for Youtube

Tải xuống các tệp mở rộng Comments Sidebar for Youtube 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

                        Chrome Extension to watch and read comments at the same time on Youtube.

Features a draggable divider to resize the player and the sidebar.

Source code available: https://github.com/tberghuis/watch-and-read-comments-for-youtube                    

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

Tên Comments Sidebar for Youtube Comments Sidebar for Youtube
ID cgijphidahihhjphcfklefeknhemmdgh
URL Chính Thức https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh
Mô tả Allows you to watch videos and read comments at the same time on Youtube.
Kích Thước Tệp 42.12 KB
Số Lần Cài Đặt 7,932
Phiên Bản Hiện Tại 0.6.0
Cập Nhật Lần Cuối 2023-07-24
Ngày Phát Hành 2019-09-24
Đánh Giá 4.60/5 Tổng số 57 Đánh Giá
Nhà Phát Triển tberghuis
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tberghuis/watch-and-read-comments-for-youtube
URL Trang Trợ Giúp https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comments Sidebar for Youtube",
    "version": "0.6.0",
    "manifest_version": 3,
    "description": "Allows you to watch videos and read comments at the same time on Youtube.",
    "icons": {
        "16": "img\/icon.16.png",
        "32": "img\/icon.32.png",
        "48": "img\/icon.48.png",
        "128": "img\/icon.128.png"
    },
    "author": "tberghuis",
    "homepage_url": "https:\/\/github.com\/tberghuis\/watch-and-read-comments-for-youtube",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "content\/vite.css"
            ],
            "js": [
                "content.js",
                "content\/vite.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject-vite.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}