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" } } |