Windowed Fullscreen for Videos

Adds a windowed fullscreen button to all videos.

ما هو Windowed Fullscreen for Videos؟

Windowed Fullscreen for Videos هو إضافة Chrome تم تطويرها بواسطة https://napalighost.com، والميزة الرئيسية لها هي "Adds a windowed fullscreen button to all videos.".

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

screenshot
screenshot

تحميل ملف CRX للإضافة Windowed Fullscreen for Videos

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

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

                        Works with most websites that include videos through the HTML5 

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

الاسم Windowed Fullscreen for Videos Windowed Fullscreen for Videos
ID bkcghongfpfngpdobomhdehbffibkjlh
عنوان URL الرسمي https://chromewebstore.google.com/detail/windowed-fullscreen-for-v/bkcghongfpfngpdobomhdehbffibkjlh
الوصف Adds a windowed fullscreen button to all videos.
حجم الملف 16.39 KB
عدد التثبيتات 849
النسخة الحالية 1.0.0
آخر تحديث 2022-06-28
تاريخ النشر 2022-06-28
تقييم 4.83/5 مجموع تقييمات 6
المطور https://napalighost.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.napalighost.com/windowed-fullscreen-for-videos
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Windowed Fullscreen for Videos",
    "version": "1.0.0",
    "description": "Adds a windowed fullscreen button to all videos.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "css": [
                "style.css"
            ],
            "js": [
                "init.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "browser_style": true
    },
    "permissions": [
        "storage"
    ]
}