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 |
| 公式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 |
| Eメール | [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"
}
} | |