Youtube Popup Comments

A way to see comments while watching videos, without scrolling away from it

Youtube Popup Comments là gì?

Youtube Popup Comments là một tiện ích mở rộng Chrome được phát triển bởi Armaan Shah, và tính năng chính của nó là "A way to see comments while watching videos, without scrolling away from it".

Ả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 Youtube Popup Comments

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

                        Ever wanted to read the comments on a YouTube video, without scrolling down to the comments section and missing any of the action?
With this extension, you can.
Simply click on the button added to the top of the YouTube UI (next to the watch later button), and scroll through the comments using the newly created pop-up window that appears on top of your video.
Click on the button again to close the pop-up when you want to focus on your video.                    

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

Tên Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
URL Chính Thức https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
Mô tả A way to see comments while watching videos, without scrolling away from it
Kích Thước Tệp 24.61 KB
Số Lần Cài Đặt 91
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-08-18
Ngày Phát Hành 2021-08-18
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Armaan Shah
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Popup Comments",
    "description": "A way to see comments while watching videos, without scrolling away from it",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "css": [
                "popupCommentsStyles.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}