Google Voice BYOP
Helper extension to send Turbo BYOP messages via Google Voice.
Wat is Google Voice BYOP?
Google Voice BYOP is een Chrome-extensie ontwikkeld door BEI.RE, en de belangrijkste functie is "Helper extension to send Turbo BYOP messages via Google Voice.".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Voice BYOP
Download Google Voice BYOP-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Google Voice BYOP |
ID | khfinpojjggmejifelkmeamiljcehmpm |
Officiële URL | https://chromewebstore.google.com/detail/google-voice-byop/khfinpojjggmejifelkmeamiljcehmpm |
Beschrijving | Helper extension to send Turbo BYOP messages via Google Voice. |
Bestandsgrootte | 56.1 KB |
Aantal Installaties | 451 |
Huidige Versie | 0.3.0 |
Laatst Bijgewerkt | 2023-06-07 |
Publicatiedatum | 2022-01-06 |
Ontwikkelaar | BEI.RE |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://www.bei.re/privacy |
Ondersteunde Talen | 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" ] } |