Simple YouTube Windowed Fullscreen
Open YouTube videos in fullscreen in it's own window (windowed fullscreen)
Simple YouTube Windowed Fullscreen là gì?
Simple YouTube Windowed Fullscreen là một tiện ích mở rộng Chrome được phát triển bởi https://srnyx.com, và tính năng chính của nó là "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Simple YouTube Windowed Fullscreen
Tải xuống các tệp mở rộng Simple YouTube Windowed Fullscreen dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Simple YouTube Windowed Fullscreen |
ID | pbihmiiillncegkbfnfkmlcjkpagehgh |
URL Chính Thức | https://chromewebstore.google.com/detail/simple-youtube-windowed-f/pbihmiiillncegkbfnfkmlcjkpagehgh |
Mô tả | Open YouTube videos in fullscreen in it's own window (windowed fullscreen) |
Kích Thước Tệp | 21.2 KB |
Số Lần Cài Đặt | 20 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2023-08-25 |
Ngày Phát Hành | 2023-03-29 |
Đánh Giá | 4.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://srnyx.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://srnyx.com |
URL Trang Trợ Giúp | https://srnyx.com/discord |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |