Google Voice BYOP

Helper extension to send Turbo BYOP messages via Google Voice.

Qu'est-ce que Google Voice BYOP ?

Google Voice BYOP est une extension Chrome développée par BEI.RE, et sa fonction principale est "Helper extension to send Turbo BYOP messages via Google Voice.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Google Voice BYOP

Téléchargez les fichiers d'extension Google Voice BYOP au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Google Voice BYOP Google Voice BYOP
ID khfinpojjggmejifelkmeamiljcehmpm
URL Officiel https://chromewebstore.google.com/detail/google-voice-byop/khfinpojjggmejifelkmeamiljcehmpm
Description Helper extension to send Turbo BYOP messages via Google Voice.
Taille du Fichier 56.1 KB
Nombre d'Installations 451
Version Actuelle 0.3.0
Dernière Mise à Jour 2023-06-07
Date de Publication 2022-01-06
Développeur BEI.RE
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.bei.re/privacy
Langues Prises en Charge 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"
    ]
}