Web Mirror

See yourself with webcam mirror!

Was ist Web Mirror?

Web Mirror ist eine Chrome-Erweiterung, die von satoshiho2012 entwickelt wurde, und ihr Hauptmerkmal ist "See yourself with webcam mirror!".

Erweiterungsscreenshots

screenshot
screenshot

Web Mirror-Erweiterungs-CRX-Datei herunterladen

Laden Sie Web Mirror-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

                        This is tool to see yourself with webcam. so-called photo/video selfie on your browser. 
It will make your browser mirror. 
This default setting is using reversible mirror which shows you how you look like when other people see you.
Important point is real mirror cannot do this.
Also, you can change view with different filter and record and save it if you like.
If you don't need your selfie video, just close tab and it will be gone completely. 
Basic purpose is just check your appearance and make yourself shine today!!

Update:

2017/Mar/14
2.0--

Added photo mode and motion mode

Updated:

2021/May/11
2.2

Removed unnecessary permissions                    

Grundlegende Informationen zur Erweiterung

Name Web Mirror Web Mirror
ID eaijffijbobmnonfhilihbejadplhddo
Offizielle URL https://chromewebstore.google.com/detail/web-mirror/eaijffijbobmnonfhilihbejadplhddo
Beschreibung See yourself with webcam mirror!
Dateigröße 85.47 KB
Installationsanzahl 5,292
Aktuelle Version 2.4
Letztes Update 2023-11-13
Veröffentlichungsdatum 2021-05-12
Bewertung 2.68/5 Insgesamt 28 Bewertungen
Entwickler satoshiho2012
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://webmirror.online
URL der Datenschutzrichtlinien-Seite http://engineernest.com/extensions/privacy_policy.html
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Mirror",
    "version": "2.4",
    "description": "See yourself with webcam mirror!",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/main.js",
        "type": "module"
    },
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png",
        "16": "img\/icon16.png"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/webmirror.online\/*"
            ],
            "js": [
                "js\/script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "alarms",
        "tabs",
        "webRequest",
        "webNavigation",
        "scripting",
        "downloads"
    ],
    "host_permissions": [
        ""
    ]
}