Google Voice BYOP
Helper extension to send Turbo BYOP messages via Google Voice.
Co to jest Google Voice BYOP?
Google Voice BYOP to rozszerzenie Chrome opracowane przez BEI.RE, a jego główną funkcją jest „Helper extension to send Turbo BYOP messages via Google Voice.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Voice BYOP
Pobierz pliki rozszerzeń Google Voice BYOP w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Google Voice BYOP |
ID | khfinpojjggmejifelkmeamiljcehmpm |
Oficjalny URL | https://chromewebstore.google.com/detail/google-voice-byop/khfinpojjggmejifelkmeamiljcehmpm |
Opis | Helper extension to send Turbo BYOP messages via Google Voice. |
Rozmiar pliku | 56.1 KB |
Liczba instalacji | 451 |
Aktualna Wersja | 0.3.0 |
Ostatnia Aktualizacja | 2023-06-07 |
Data Publikacji | 2022-01-06 |
Deweloper | BEI.RE |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://www.bei.re/privacy |
Obsługiwane Języki | 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" ] } |