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! 擴展基本資訊
| 名稱 | |
| ID | mponkehblfpkgfeomegpjmbadbkojdpb |
| 官方網址 | 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"
}
} | |