Simple YouTube Windowed Fullscreen

Open YouTube videos in fullscreen in it's own window (windowed fullscreen)

ما هو Simple YouTube Windowed Fullscreen؟

Simple YouTube Windowed Fullscreen هو إضافة Chrome تم تطويرها بواسطة https://srnyx.com، والميزة الرئيسية لها هي "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Simple YouTube Windowed Fullscreen

قم بتنزيل ملفات الامتداد Simple YouTube Windowed Fullscreen بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Simple YouTube Windowed Fullscreen is an extremely simple extension (only 12 lines of code) that allows you to open YouTube videos in their own pop-up windows.

This is great if you're watching a long video or movie and want to multi-task. Or, you just like being able to see your taskbar and to easily manage the YouTube video's display.

This was made in a few hours (had to learn a bit of JavaScript and Chrome API), but I'd be happy to add any new features and to fix any bugs!

GitHub (source code): https://simple-youtube-windowed-fullscreen.srnyx.com                    

معلومات أساسية عن التمديد

الاسم Simple YouTube Windowed Fullscreen Simple YouTube Windowed Fullscreen
ID pbihmiiillncegkbfnfkmlcjkpagehgh
عنوان URL الرسمي https://chromewebstore.google.com/detail/simple-youtube-windowed-f/pbihmiiillncegkbfnfkmlcjkpagehgh
الوصف Open YouTube videos in fullscreen in it's own window (windowed fullscreen)
حجم الملف 21.2 KB
عدد التثبيتات 20
النسخة الحالية 1.0.0
آخر تحديث 2023-08-25
تاريخ النشر 2023-03-29
تقييم 4.00/5 مجموع تقييمات 3
المطور https://srnyx.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://srnyx.com
عنوان صفحة المساعدة https://srnyx.com/discord
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.0",
    "name": "Simple YouTube Windowed Fullscreen",
    "description": "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)",
    "author": "[email protected]",
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png",
            "80": "icons\/icon80.png",
            "96": "icons\/icon96.png",
            "112": "icons\/icon112.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Open video in windowed fullscreen"
    },
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    }
}