YouTube Windowed FullScreen
Watch videos on YouTube fullscreen within your browsers screen.
YouTube Windowed FullScreen क्या है?
YouTube Windowed FullScreen navi.jador द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Watch videos on YouTube fullscreen within your browsers screen."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Windowed FullScreen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
UPDATES!! Auto-Toggle has now been implemented. -There is now a OPTIONS page with 3 new options. To go there, either click the icon in your browser, or head to chrome://extensions and click on Details for Youtube Windowed FullScreen and click the "Extension Options". Please note some Shortcut Keys may not work correctly as YouTube, or your system may block them. Most keys should work if they are not reserved. NOTE: PLEASE RESTART CHROME OR REFRESH YOUTUBE IF IT DOESNT WORK AFTER INSTALLING. A simple and lightweight extension that adds an icon which allows the YouTube video player to fill the entire page, as a full browser player. This is especially useful for dual monitor users that may wish to continue working on other tasks with a large video playing. In other words make your youtube fullscreen in your window! FYI the shortcut key to toggle this without clicking is "`" on your keyboard! Updates: 1. Now works with the new youtube layout! 2. Fixed compatibility issues with MagicActions and Adblock 3. Added shortcut key "`" 4. Added Options page at chrome://extensions, for 3 new settings (Auto-Toggle, Hide Full Screen and ShortCut Key) 5. Should now load more consistently.
एक्सटेंशन की मूल जानकारी
नाम | YouTube Windowed FullScreen |
ID | gkkmiofalnjagdcjheckamobghglpdpm |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-windowed-fullscre/gkkmiofalnjagdcjheckamobghglpdpm |
विवरण | Watch videos on YouTube fullscreen within your browsers screen. |
फ़ाइल का आकार | 29.59 KB |
स्थापना संख्या | 50,965 |
वर्तमान संस्करण | 3.8 |
अंतिम अपडेट | 2022-07-20 |
प्रकाशन तिथि | 2019-05-01 |
रेटिंग | 4.46/5 कुल 293 रेटिंग्स |
डेवलपर | navi.jador |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Windowed FullScreen", "short_name": "YouTube FullScreen", "description": "Watch videos on YouTube fullscreen within your browsers screen.", "version": "3.8", "action": { "default_icon": "icon16.png" }, "icons": { "128": "icon128.png", "16": "icon16.png", "32": "icon32.png", "48": "icon48.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "js": [ "YouTube.fullbrowser.js" ], "css": [ "YouTube.fullbrowser.css" ], "matches": [ "*:\/\/www.youtube.com\/*" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "browser_style": true, "open_in_tab": false }, "permissions": [ "storage" ] } |