GM Assistant
GM Assistant
GM Assistantとは何ですか?
GM AssistantはAyudh Kumar Guptaによって開発されたChromeの拡張機能で、その主な機能は「GM Assistant」です。
拡張機能のスクリーンショット
GM Assistant拡張機能のCRXファイルをダウンロード
GM Assistant拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Use this chrome extension to join all google meet calls via a default user. One can also Turn off their Mic and Camera by default using this extension. 拡張機能の基本情報
| 名前 | |
| ID | gnfmffmjjhjhidgghikjiajfbcfhdfmf |
| 公式URL | https://chromewebstore.google.com/detail/gm-assistant/gnfmffmjjhjhidgghikjiajfbcfhdfmf |
| 説明 | GM Assistant |
| ファイルサイズ | 49.11 KB |
| インストール数 | 51 |
| 現在のバージョン | 1.1 |
| 最終更新日 | 2021-06-18 |
| 公開日 | 2021-03-29 |
| 評価 | 5.00/5 合計 10 レビュー |
| 開発者 | Ayudh Kumar Gupta |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "GM Assistant",
"version": "1.1",
"description": "GM Assistant",
"manifest_version": 2,
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"storage",
"tabs",
"http:\/\/*\/",
"https:\/\/*\/"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"constants.js",
"storageUtil.js",
"content.js"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
}
} | |