Windowed Fullscreen for Videos

Adds a windowed fullscreen button to all videos.

Co to jest Windowed Fullscreen for Videos?

Windowed Fullscreen for Videos to rozszerzenie Chrome opracowane przez https://napalighost.com, a jego główną funkcją jest „Adds a windowed fullscreen button to all videos.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Windowed Fullscreen for Videos

Pobierz pliki rozszerzeń Windowed Fullscreen for Videos w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Works with most websites that include videos through the HTML5 

Podstawowe informacje o rozszerzeniu

Nazwa Windowed Fullscreen for Videos Windowed Fullscreen for Videos
ID bkcghongfpfngpdobomhdehbffibkjlh
Oficjalny URL https://chromewebstore.google.com/detail/windowed-fullscreen-for-v/bkcghongfpfngpdobomhdehbffibkjlh
Opis Adds a windowed fullscreen button to all videos.
Rozmiar pliku 16.39 KB
Liczba instalacji 849
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2022-06-28
Data Publikacji 2022-06-28
Ocena 4.83/5 Łącznie 6 Oceny
Deweloper https://napalighost.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.napalighost.com/windowed-fullscreen-for-videos
Obsługiwane Języki 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"
    ]
}