Meet Party
Celebrate with friends on Google Meet
什么是Meet Party?
Meet Party是由Ananya G开发的Chrome扩展程序,该扩展的主要功能是“Celebrate with friends on Google Meet”。
扩展截图
下载Meet Party扩展crx文件
下载Meet Party扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | Meet Party |
ID | mponkehblfpkgfeomegpjmbadbkojdpb |
官方URL | https://chromewebstore.google.com/detail/meet-party/mponkehblfpkgfeomegpjmbadbkojdpb |
简介 | Celebrate with friends on Google Meet |
文件大小 | 1.71 MB |
安装次数 | 3,014 |
当前版本 | 1.0 |
更新时间 | 2020-07-09 |
上架时间 | 2020-07-09 |
评分 | 3.59/5 共17次评分 |
开发者 | Ananya G |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |