Windowed Fullscreen for Videos

Adds a windowed fullscreen button to all videos.

Vad är Windowed Fullscreen for Videos?

Windowed Fullscreen for Videos är en Chrome-tillägg utvecklad av https://napalighost.com, och dess huvudfunktion är "Adds a windowed fullscreen button to all videos.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Windowed Fullscreen for Videos-förlängningens CRX-fil

Ladda ner Windowed Fullscreen for Videos-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Works with most websites that include videos through the HTML5 

Grundläggande Information om Tillägg

Namn Windowed Fullscreen for Videos Windowed Fullscreen for Videos
ID bkcghongfpfngpdobomhdehbffibkjlh
Officiell webbadress https://chromewebstore.google.com/detail/windowed-fullscreen-for-v/bkcghongfpfngpdobomhdehbffibkjlh
Beskrivning Adds a windowed fullscreen button to all videos.
Filstorlek 16.39 KB
Antal Installationer 849
Aktuell Version 1.0.0
Senast Uppdaterad 2022-06-28
Publiceringsdatum 2022-06-28
Betyg 4.83/5 Totalt 6 Betyg
Utvecklare https://napalighost.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.napalighost.com/windowed-fullscreen-for-videos
Stödda Språk 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"
    ]
}