Youtube Popup Comments

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

Youtube Popup Commentsคืออะไร?

Youtube Popup Comments เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Armaan Shah และคุณลักษณะหลักของมันคือ "A way to see comments while watching videos, without scrolling away from it"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Popup Comments

ดาวน์โหลดไฟล์ส่วนขยาย Youtube Popup Comments ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
คำอธิบาย A way to see comments while watching videos, without scrolling away from it
ขนาดไฟล์ 24.61 KB
จำนวนการติดตั้ง 91
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-08-18
วันที่เผยแพร่ 2021-08-18
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Armaan Shah
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
ภาษาที่รองรับ 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"
    }
}