Meet Party

Celebrate with friends on Google Meet

Cos'è Meet Party?

Meet Party è un'estensione di Chrome sviluppata da Ananya G, e la sua funzione principale è "Celebrate with friends on Google Meet".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Meet Party

Scarica i file di estensione Meet Party 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

                        Meet Party is a chrome extension that adds an element of fun to your Google Meet calls. Celebrate with friends and family using Meet Party. Enjoy!                    

Informazioni di Base sull'Estensione

Nome Meet Party Meet Party
ID mponkehblfpkgfeomegpjmbadbkojdpb
URL Ufficiale https://chromewebstore.google.com/detail/meet-party/mponkehblfpkgfeomegpjmbadbkojdpb
Descrizione Celebrate with friends on Google Meet
Dimensione del File 1.71 MB
Conteggio Installazioni 3,014
Versione Corrente 1.0
Ultimo Aggiornamento 2020-07-09
Data di Pubblicazione 2020-07-09
Valutazione 3.59/5 Totale 17 Valutazioni
Sviluppatore Ananya G
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0",
    "manifest_version": 2,
    "name": "Meet Party",
    "description": "Celebrate with friends on Google Meet",
    "author": "Ananya",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "web_accessible_resources": [
        "assets\/*"
    ],
    "browser_action": {
        "default_icon": {
            "16": "assets\/iconp.png",
            "48": "assets\/iconp.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "\/assets\/iconf.png"
    }
}