Google Voice BYOP
Helper extension to send Turbo BYOP messages via Google Voice.
Google Voice BYOPとは何ですか?
Google Voice BYOPはBEI.REによって開発されたChromeの拡張機能で、その主な機能は「Helper extension to send Turbo BYOP messages via Google Voice.」です。
拡張機能のスクリーンショット
Google Voice BYOP拡張機能のCRXファイルをダウンロード
Google Voice BYOP拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a helper extension that enables users of the TurboBYOP extension to use Google Voice as the messaging application for sending their text messages.
拡張機能の基本情報
名前 | Google Voice BYOP |
ID | khfinpojjggmejifelkmeamiljcehmpm |
公式URL | https://chromewebstore.google.com/detail/google-voice-byop/khfinpojjggmejifelkmeamiljcehmpm |
説明 | Helper extension to send Turbo BYOP messages via Google Voice. |
ファイルサイズ | 56.1 KB |
インストール数 | 451 |
現在のバージョン | 0.3.0 |
最終更新日 | 2023-06-07 |
公開日 | 2022-01-06 |
開発者 | BEI.RE |
Eメール | [email protected] |
支払い方法 | free |
プライバシーポリシーページのURL | https://www.bei.re/privacy |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Voice BYOP", "short_name": "GV-BYOP", "version": "0.3.0", "description": "Helper extension to send Turbo BYOP messages via Google Voice. ", "author": "BEI.RE Corp", "homepage_url": "https:\/\/www.bei.re", "background": { "service_worker": "background.js" }, "action": { "default_title": "GV-BYOP", "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/hangouts.google.com\/webchat\/*" ], "js": [ "contentScripts\/hangoutsListViewManager.js", "contentScripts\/hangoutsThreadViewManager.js" ], "all_frames": true }, { "matches": [ "https:\/\/voice.google.com\/*" ], "js": [ "contentScripts\/googleVoiceManager.js" ], "all_frames": true }, { "matches": [ "https:\/\/hangouts.google.com\/webchat\/*", "https:\/\/voice.google.com\/*" ], "js": [ "contentScripts\/tools.js", "contentScripts\/main.js" ], "all_frames": true } ], "icons": { "48": "icon48.png", "128": "icon.png" }, "permissions": [ "clipboardWrite", "clipboardRead", "storage" ] } |