Youtube Chat in Fullscreen
A chrome extension creates an overlay to show Youtube live chat when in full screen
Youtube Chat in Fullscreen क्या है?
Youtube Chat in Fullscreen alvistseio द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension creates an overlay to show Youtube live chat when in full screen"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Chat in Fullscreen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
If you have any problem and feature request, join the discord server https://discord.gg/RJGpyC98Ss Key features - Show a live chat overlay when you are watching Youtube live stream in full screen - Also support video pages with chat replay - You can adjust position, opacity, size, and font size of overlay as you wish Usages - Use Ctrl + Shift + y to toggle overlay Update logs v2.0.4 (2-Apr-2022) - Fixed conflict with Enhancer for YouTube™ v2.0.3 (28-Sept-2021) - Fixed Live Member Chat message v2.0.2 (26-Aug-2021) - Fixed bug make app crashed by message emoji v2.0.1 (2-May-2021) - Auto hide toolbar v2.0 (26-April-2021) - New Overlay UI - Much intuitive resizing method - Do not have annoying toolbar to block the content - Chat filter for each video page - Added Super Sticker Support - Fixed shortcut issue by change shortcut to ctrl+shift+y
एक्सटेंशन की मूल जानकारी
नाम | Youtube Chat in Fullscreen |
ID | kmhclnjhlejdjlkgeebolkigafpaijkp |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-chat-in-fullscree/kmhclnjhlejdjlkgeebolkigafpaijkp |
विवरण | A chrome extension creates an overlay to show Youtube live chat when in full screen |
फ़ाइल का आकार | 233 KB |
स्थापना संख्या | 132,128 |
वर्तमान संस्करण | 2.0.4 |
अंतिम अपडेट | 2022-04-02 |
प्रकाशन तिथि | 2020-09-28 |
रेटिंग | 4.37/5 कुल 183 रेटिंग्स |
डेवलपर | alvistseio |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Shad02w/Youtube-Chat-in-Fullscreen |
सहायता पृष्ठ URL | https://github.com/Shad02w/Youtube-Chat-in-Fullscreen/issues |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Chat in Fullscreen", "description": "A chrome extension creates an overlay to show Youtube live chat when in full screen", "version": "2.0.4", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html", "default_icon": ".\/icons\/chat128.png" }, "icons": { "16": ".\/icons\/chat16.png", "48": ".\/icons\/chat48.png", "128": ".\/icons\/chat128.png" }, "permissions": [ "storage", "activeTab", "webRequest", "*:\/\/*.youtube.com\/" ], "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "web_accessible_resources": [ "pageInject.js", "css\/NativeChatFilter.css" ] } |