OKIOLABS Mirror Image Corrector
The OKIOLABS Mirror Image Corrector extension allows you to correct the adjusted image that occurs when using Google Meet.
Vad är OKIOLABS Mirror Image Corrector?
OKIOLABS Mirror Image Corrector är en Chrome-tillägg utvecklad av https://www.okiolabs.com, och dess huvudfunktion är "The OKIOLABS Mirror Image Corrector extension allows you to correct the adjusted image that occurs when using Google Meet.".
Tilläggsskärmbilder
Ladda ner OKIOLABS Mirror Image Corrector-förlängningens CRX-fil
Ladda ner OKIOLABS Mirror Image Corrector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
📝 The FREE OKIOLABS Mirror Image Corrector is an extension meant to work in conjunction with Google Meet that helps you enable and disable the adjusted mirror image so that you can accurately see what you are writing, drawing, presenting, discussing, or creating! 😀 The OKIOLABS Mirror Image Corrector gives you the power to toggle between the mirrored and non mirrored image. After downloading, you can use the extension by clicking the extension’s popup and then you will be able to enable and disable the mirrored image. 🎥 The OKIOLABS Mirror Image Corrector helps you to explicate difficult math problems, model unique art techniques, and demonstrate good penmanship! 😀 Google Meet automatically mirrors the preview window (sender’s video). The OKIOLABS Mirror Image Corrector lets you correct the preview window by toggling between the unmirrored image as well as the mirrored image. Comments? Questions? Suggestions? Please tell us: [email protected]
Grundläggande Information om Tillägg
Namn | OKIOLABS Mirror Image Corrector |
ID | jilajkmkggigmofihljmeajphfdphpjl |
Officiell webbadress | https://chromewebstore.google.com/detail/okiolabs-mirror-image-cor/jilajkmkggigmofihljmeajphfdphpjl |
Beskrivning | The OKIOLABS Mirror Image Corrector extension allows you to correct the adjusted image that occurs when using Google Meet. |
Filstorlek | 78.92 KB |
Antal Installationer | 3,541 |
Aktuell Version | 1.0.9 |
Senast Uppdaterad | 2022-04-12 |
Publiceringsdatum | 2022-04-12 |
Betyg | 3.50/5 Totalt 2 Betyg |
Utvecklare | https://www.okiolabs.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.okiolabs.com |
Hjälpsida URL | https://okiolabs.zendesk.com/hc/en-us |
URL till Sekretesspolicy Sidan | https://okiolabs.com/privacy-policy |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "OKIOLABS Mirror Image Corrector", "description": "The OKIOLABS Mirror Image Corrector extension allows you to correct the adjusted image that occurs when using Google Meet.", "version": "1.0.9", "icons": { "16": "icon48.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_title": "Only can use in Google Meet.", "default_icon": "icon48.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "tabs" ], "host_permissions": [ "https:\/\/meet.google.com\/*" ], "background": { "service_worker": "event.js" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "execute.js" ] } ] } |