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 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
عنوان صفحة المساعدة 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\/*"
            ]
        }
    ]
}