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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
    }
}