Comments Sidebar for Youtube

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

Comments Sidebar for Youtubeคืออะไร?

Comments Sidebar for Youtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tberghuis และคุณลักษณะหลักของมันคือ "Allows you to watch videos and read comments at the same time on Youtube."

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

screenshot

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

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

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

                        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                    

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

ชื่อ Comments Sidebar for Youtube Comments Sidebar for Youtube
ID cgijphidahihhjphcfklefeknhemmdgh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh
คำอธิบาย Allows you to watch videos and read comments at the same time on Youtube.
ขนาดไฟล์ 42.12 KB
จำนวนการติดตั้ง 7,932
เวอร์ชันปัจจุบัน 0.6.0
อัปเดตครั้งล่าสุด 2023-07-24
วันที่เผยแพร่ 2019-09-24
คะแนน 4.60/5 รวมทั้งหมด 57 คะแนน
ผู้พัฒนา tberghuis
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/tberghuis/watch-and-read-comments-for-youtube
URL หน้าช่วยเหลือ https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues
ภาษาที่รองรับ 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\/*"
            ]
        }
    ]
}