Simple YouTube Windowed Fullscreen
Open YouTube videos in fullscreen in it's own window (windowed fullscreen)
Simple YouTube Windowed Fullscreen क्या है?
Simple YouTube Windowed Fullscreen https://srnyx.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Open YouTube videos in fullscreen in it's own window (windowed fullscreen)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Simple YouTube Windowed Fullscreen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |