Google Voice BYOP

Helper extension to send Turbo BYOP messages via Google Voice.

Cos'è Google Voice BYOP?

Google Voice BYOP è un'estensione di Chrome sviluppata da BEI.RE, e la sua funzione principale è "Helper extension to send Turbo BYOP messages via Google Voice.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Google Voice BYOP

Scarica i file di estensione Google Voice BYOP in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Google Voice BYOP Google Voice BYOP
ID khfinpojjggmejifelkmeamiljcehmpm
URL Ufficiale https://chromewebstore.google.com/detail/google-voice-byop/khfinpojjggmejifelkmeamiljcehmpm
Descrizione Helper extension to send Turbo BYOP messages via Google Voice.
Dimensione del File 56.1 KB
Conteggio Installazioni 451
Versione Corrente 0.3.0
Ultimo Aggiornamento 2023-06-07
Data di Pubblicazione 2022-01-06
Sviluppatore BEI.RE
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.bei.re/privacy
Lingue Supportate 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"
    ]
}