Google Meet Virtual Backgrounds

Google Meet Virtual Backgrounds - Easy way to change your webcam background on Google Meet

Vad är Google Meet Virtual Backgrounds?

Google Meet Virtual Backgrounds är en Chrome-tillägg utvecklad av https://www.w3technic.com, och dess huvudfunktion är "Google Meet Virtual Backgrounds - Easy way to change your webcam background on Google Meet".

Tilläggsskärmbilder

screenshot

Ladda ner Google Meet Virtual Backgrounds-förlängningens CRX-fil

Ladda ner Google Meet Virtual Backgrounds-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

                        Replace your current background by the virtual background during your Google Meet calls, without a green screen.
This extension made by babgev (not from Google)                    

Grundläggande Information om Tillägg

Namn Google Meet Virtual Backgrounds Google Meet Virtual Backgrounds
ID bmgogkgklcedkeplmalbcklcbpgelpdg
Officiell webbadress https://chrome.google.com/webstore/detail/google-meet-virtual-backg/bmgogkgklcedkeplmalbcklcbpgelpdg
Beskrivning Google Meet Virtual Backgrounds - Easy way to change your webcam background on Google Meet
Filstorlek 280 KB
Antal Installationer 20,000
Aktuell Version 2.0.0
Senast Uppdaterad 2020-08-07
Publiceringsdatum 2020-08-03
Betyg 1.84/5 Totalt 31 Betyg
Utvecklare https://www.w3technic.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.w3technic.com/2020/07/virtual-background-for-google-meet.html
Hjälpsida URL https://www.w3technic.com/p/contact.html
URL till Sekretesspolicy Sidan https://w3technic.com/privacy-policy
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Virtual Backgrounds ",
    "version": "2.0.0",
    "description": "Google Meet Virtual Backgrounds - Easy way to change your webcam background on Google Meet",
    "homepage_url": "https:\/\/www.w3technic.com\/2020\/08\/google-meet-virtual-background-how-to.html",
    "short_name": "VirtualBackgroundsForMeet",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icons\/logo-16.png",
        "32": "assets\/icons\/logo-32.png",
        "48": "assets\/icons\/logo-48.png",
        "128": "assets\/icons\/logo-128.png"
    },
    "author": "Coderantine",
    "minimum_chrome_version": "49",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/logo-16.png",
            "32": "assets\/icons\/logo-32.png",
            "48": "assets\/icons\/logo-48.png",
            "128": "assets\/icons\/logo-128.png"
        },
        "default_title": "Google Meet Virtual backgrounds",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "js\/update-conf.js",
            "js\/update.js",
            "js\/background.bundle.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "js\/mediaSourceSwap.js"
    ]
}