Google Meet Mirror / Flip Camera
Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.
Qu'est-ce que Google Meet Mirror / Flip Camera ?
Google Meet Mirror / Flip Camera est une extension Chrome développée par jpa, et sa fonction principale est "Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Google Meet Mirror / Flip Camera
Téléchargez les fichiers d'extension Google Meet Mirror / Flip Camera au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
📽 Flip google meet camera to match what others really see ! 📹 ⚠️ Only compatible with Google meet this plugin will unmirror your camera and only your camera ! Other chrome plugins that won't work : - Google grid extension has the option to flip the camera but it's now broken because Google Meet has deployed its own grid system. - VideoMirror extension mirror all videos in the room including shared screen. This is bad because the shared screen become unreadable, all is written in reverse !
Informations de Base sur l'Extension
Nom | Google Meet Mirror / Flip Camera |
ID | cbnfajeeaebnldmgnodjlkfeomdacjlc |
URL Officiel | https://chromewebstore.google.com/detail/google-meet-mirror-flip-c/cbnfajeeaebnldmgnodjlkfeomdacjlc |
Description | Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see. |
Taille du Fichier | 31.89 KB |
Nombre d'Installations | 113,748 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2020-11-05 |
Date de Publication | 2020-10-13 |
Évaluation | 3.07/5 Total 59 Évaluations |
Développeur | jpa |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jpaille/FlipMyCam |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Mirror \/ Flip Camera", "description": "Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.", "version": "1.0.2", "author": "Julien Paille", "icons": { "24": "icon24.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "24": "icon24.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html", "default_title": "Google Meet Mirror : Flip camera to match what others see" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "init_flip.js" ] } ], "permissions": [ "activeTab", "declarativeContent" ] } |