Meet Party
Celebrate with friends on Google Meet
What is Meet Party?
Meet Party is a Chrome extension developed by Ananya G, and its main feature is "Celebrate with friends on Google Meet".
Extension Screenshots
Download Meet Party Extension CRX File
Download Meet Party extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Meet Party |
ID | mponkehblfpkgfeomegpjmbadbkojdpb |
Official URL | https://chromewebstore.google.com/detail/meet-party/mponkehblfpkgfeomegpjmbadbkojdpb |
Description | Celebrate with friends on Google Meet |
File Size | 1.71 MB |
Installation Count | 3,014 |
Current Version | 1.0 |
Last Updated | 2020-07-09 |
Publish Date | 2020-07-09 |
Rating | 3.59/5 Total 17 Ratings |
Developer | Ananya G |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |