Discord Video Chat
Place Discord Video Channel and Text Channel side-by-side.
Discord Video Chat क्या है?
Discord Video Chat dsngiem द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Place Discord Video Channel and Text Channel side-by-side."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Discord Video Chat एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Required for using the Discord Video Chat website.
एक्सटेंशन की मूल जानकारी
नाम | Discord Video Chat |
ID | jjpggljlbclphcoblhpngnbbmgjgaoja |
आधिकारिक URL | https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja |
विवरण | Place Discord Video Channel and Text Channel side-by-side. |
फ़ाइल का आकार | 91.08 KB |
स्थापना संख्या | 465 |
वर्तमान संस्करण | 1.0.4 |
अंतिम अपडेट | 2022-01-11 |
प्रकाशन तिथि | 2020-12-21 |
रेटिंग | 4.00/5 कुल 2 रेटिंग्स |
डेवलपर | dsngiem |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Discord Video Chat", "short_name": "Discord Video Chat", "version": "1.0.4", "description": "Place Discord Video Channel and Text Channel side-by-side.", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "browser_action": { "default_icon": "icon-48.png" }, "content_scripts": [ { "matches": [ "http:\/\/localhost:4200\/*", "https:\/\/beehive-chat.web.app\/*" ], "js": [ "app.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/discord.com\/*" ], "js": [ "scripts\/discord.js" ], "css": [ "scripts\/discord.css" ], "run_at": "document_idle", "all_frames": true } ], "background": { "scripts": [ "background.js" ], "persistent": true }, "manifest_version": 2, "permissions": [ "tabs", "webNavigation", "webRequest", "webRequestBlocking", "http:\/\/localhost:4200\/*", "https:\/\/discord.com\/*", "https:\/\/beehive-chat.web.app\/*" ], "optional_permissions": [ "contentSettings" ] } |