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 neranyapi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension creates an overlay to show Youtube live chat when in full screen"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Chat in Fullscreen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A chrome extension creates an overlay to show Youtube live chat when in full screen
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 + Alt + c to toggle overlay
- Press and hold Ctrl + Alt, then drag to move the position of overlay
Update logs
v.1.0.0.13 (26-Jan-2021)
- Native chat in beta
- Verified user is highlight as the same as owner
- Fixed the color of member name एक्सटेंशन की मूल जानकारी
| नाम | |
| ID | falbnmmgibpljgmgpmmckflkblfeaiim |
| आधिकारिक URL | https://chrome.google.com/webstore/detail/youtube-chat-in-fullscree/falbnmmgibpljgmgpmmckflkblfeaiim |
| विवरण | A chrome extension creates an overlay to show Youtube live chat when in full screen |
| फ़ाइल का आकार | 229 KB |
| स्थापना संख्या | 193 |
| वर्तमान संस्करण | 1.0.0.14 |
| अंतिम अपडेट | 2021-04-03 |
| प्रकाशन तिथि | 2021-04-03 |
| डेवलपर | neranyapi |
| ईमेल | [email protected] |
| भुगतान के प्रकार | free |
| गोपनीयता नीति पृष्ठ URL | https://docs.google.com/document/d/19ZzedyqQ4abdzpQeUZD1bwX0l2jXmepslR2b8WkcI0o |
| समर्थित भाषाएँ | en |
| 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": "1.0.0.14",
"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"
]
} | |