Google Voice BYOP

Helper extension to send Turbo BYOP messages via Google Voice.

What is Google Voice BYOP?

Google Voice BYOP is a Chrome extension developed by BEI.RE, and its main feature is "Helper extension to send Turbo BYOP messages via Google Voice.".

Extension Screenshots

screenshot

Download Google Voice BYOP Extension CRX File

Download Google Voice BYOP extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Google Voice BYOP Google Voice BYOP
ID khfinpojjggmejifelkmeamiljcehmpm
Official URL https://chromewebstore.google.com/detail/google-voice-byop/khfinpojjggmejifelkmeamiljcehmpm
Description Helper extension to send Turbo BYOP messages via Google Voice.
File Size 56.1 KB
Installation Count 451
Current Version 0.3.0
Last Updated 2023-06-07
Publish Date 2022-01-06
Developer BEI.RE
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.bei.re/privacy
Supported Languages 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"
    ]
}