P2P Video Chat Dev
P2P Video Chat By Web Mavens
Was ist P2P Video Chat Dev?
P2P Video Chat Dev ist eine Chrome-Erweiterung, die von Web Mavens entwickelt wurde, und ihr Hauptmerkmal ist "P2P Video Chat By Web Mavens".
Erweiterungsscreenshots
P2P Video Chat Dev-Erweiterungs-CRX-Datei herunterladen
Laden Sie P2P Video Chat Dev-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
To change Google Meet Layout. Organisation can use it as instant call to their employees. Organisation Admin can access their user's mic and video from remotely to avoid disturbance and make life easier of the Organisation team. Zoho start timer and stop timer button can be display to GitHub
Grundlegende Informationen zur Erweiterung
Name | P2P Video Chat Dev |
ID | pmphbklhojediipdailenjjhameppbec |
Offizielle URL | https://chromewebstore.google.com/detail/p2p-video-chat-dev/pmphbklhojediipdailenjjhameppbec |
Beschreibung | P2P Video Chat By Web Mavens |
Dateigröße | 129 KB |
Installationsanzahl | 35 |
Aktuelle Version | 2.0.16 |
Letztes Update | 2024-01-19 |
Veröffentlichungsdatum | 2021-04-09 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Web Mavens |
[email protected] | |
Zahlungsart | free |
URL der Datenschutzrichtlinien-Seite | https://www.webmavens.com/privacy |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "P2P Video Chat Dev", "description": "P2P Video Chat By Web Mavens", "version": "2.0.16", "manifest_version": 2, "homepage_url": "https:\/\/www.webmavens.com", "background": { "scripts": [ "assets\/js\/socket.io.2.3.0.js", "assets\/js\/jquery.3.4.1.min.js", "background.js", "background-github.js" ], "persistent": true }, "icons": { "16": "assets\/img\/icon16x16.png", "48": "assets\/img\/icon48x48.png", "128": "assets\/img\/icon128x128.png" }, "browser_action": { "default_icon": { "24": "assets\/img\/icon24.png", "36": "assets\/img\/icon36.png", "48": "assets\/img\/icon48.png" }, "default_popup": "grid-menu.html", "default_title": "P2P Video Chat By Web Mavens" }, "permissions": [ "tabs", "activeTab", "storage", "https:\/\/localhost:3000\/*", "https:\/\/192.168.1.15:3000\/*", "https:\/\/12.5.154.155\/*", "https:\/\/meet.google.com\/*", "identity", "identity.email" ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "assets\/js\/socket.io.2.3.0.js", "assets\/js\/jquery.3.4.1.min.js", "assets\/js\/browser-polyfill.js", "assets\/js\/content.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/github.com\/*" ], "js": [ "assets\/js\/wm-github.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "assets\/js\/grid.user.js" ] } |