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 |
电子邮箱 | [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" ] } |