Simple YouTube Windowed Fullscreen
Open YouTube videos in fullscreen in it's own window (windowed fullscreen)
Τι είναι το Simple YouTube Windowed Fullscreen;
Το Simple YouTube Windowed Fullscreen είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://srnyx.com, και η κύρια λειτουργία του είναι "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Simple YouTube Windowed Fullscreen
Λήψη αρχείων επέκτασης Simple YouTube Windowed Fullscreen σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Simple YouTube Windowed Fullscreen |
ID | pbihmiiillncegkbfnfkmlcjkpagehgh |
Επίσημο URL | https://chromewebstore.google.com/detail/simple-youtube-windowed-f/pbihmiiillncegkbfnfkmlcjkpagehgh |
Περιγραφή | Open YouTube videos in fullscreen in it's own window (windowed fullscreen) |
Μέγεθος Αρχείου | 21.2 KB |
Αριθμός Εγκαταστάσεων | 20 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2023-08-25 |
Ημερομηνία Δημοσίευσης | 2023-03-29 |
Αξιολόγηση | 4.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | https://srnyx.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://srnyx.com |
Διεύθυνση URL της Σελίδας Βοήθειας | https://srnyx.com/discord |
Υποστηριζόμενες Γλώσσες | 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" } } |