Google Meet Mirror / Flip Camera
Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.
Cos'è Google Meet Mirror / Flip Camera?
Google Meet Mirror / Flip Camera è un'estensione di Chrome sviluppata da jpa, e la sua funzione principale è "Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Meet Mirror / Flip Camera
Scarica i file di estensione Google Meet Mirror / Flip Camera in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
📽 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 !
Informazioni di Base sull'Estensione
Nome | Google Meet Mirror / Flip Camera |
ID | cbnfajeeaebnldmgnodjlkfeomdacjlc |
URL Ufficiale | https://chromewebstore.google.com/detail/google-meet-mirror-flip-c/cbnfajeeaebnldmgnodjlkfeomdacjlc |
Descrizione | Adds a toggle to flip Google Meet camera image, Flip camera to match what others really see. |
Dimensione del File | 31.89 KB |
Conteggio Installazioni | 113,748 |
Versione Corrente | 1.0.2 |
Ultimo Aggiornamento | 2020-11-05 |
Data di Pubblicazione | 2020-10-13 |
Valutazione | 3.07/5 Totale 59 Valutazioni |
Sviluppatore | jpa |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jpaille/FlipMyCam |
Lingue Supportate | 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" ] } |