Simple YouTube Windowed Fullscreen

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

Cos'è Simple YouTube Windowed Fullscreen?

Simple YouTube Windowed Fullscreen è un'estensione di Chrome sviluppata da https://srnyx.com, e la sua funzione principale è "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Simple YouTube Windowed Fullscreen

Scarica i file di estensione Simple YouTube Windowed Fullscreen in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Simple YouTube Windowed Fullscreen Simple YouTube Windowed Fullscreen
ID pbihmiiillncegkbfnfkmlcjkpagehgh
URL Ufficiale https://chromewebstore.google.com/detail/simple-youtube-windowed-f/pbihmiiillncegkbfnfkmlcjkpagehgh
Descrizione Open YouTube videos in fullscreen in it's own window (windowed fullscreen)
Dimensione del File 21.2 KB
Conteggio Installazioni 20
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-08-25
Data di Pubblicazione 2023-03-29
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore https://srnyx.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://srnyx.com
URL della Pagina di Aiuto https://srnyx.com/discord
Lingue Supportate 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"
    }
}