Simple YouTube Windowed Fullscreen
Open YouTube videos in fullscreen in it's own window (windowed fullscreen)
Qu'est-ce que Simple YouTube Windowed Fullscreen ?
Simple YouTube Windowed Fullscreen est une extension Chrome développée par https://srnyx.com, et sa fonction principale est "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Simple YouTube Windowed Fullscreen
Téléchargez les fichiers d'extension Simple YouTube Windowed Fullscreen au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Simple YouTube Windowed Fullscreen |
ID | pbihmiiillncegkbfnfkmlcjkpagehgh |
URL Officiel | https://chromewebstore.google.com/detail/simple-youtube-windowed-f/pbihmiiillncegkbfnfkmlcjkpagehgh |
Description | Open YouTube videos in fullscreen in it's own window (windowed fullscreen) |
Taille du Fichier | 21.2 KB |
Nombre d'Installations | 20 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2023-08-25 |
Date de Publication | 2023-03-29 |
Évaluation | 4.00/5 Total 3 Évaluations |
Développeur | https://srnyx.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://srnyx.com |
URL de la Page d'Aide | https://srnyx.com/discord |
Langues Prises en Charge | 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" } } |