Google Voice BYOP

Helper extension to send Turbo BYOP messages via Google Voice.

Apa itu Google Voice BYOP?

Google Voice BYOP adalah ekstensi Chrome yang dikembangkan oleh BEI.RE, dan fitur utamanya adalah "Helper extension to send Turbo BYOP messages via Google Voice.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Google Voice BYOP

Unduh file ekstensi Google Voice BYOP dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Google Voice BYOP Google Voice BYOP
ID khfinpojjggmejifelkmeamiljcehmpm
URL Resmi https://chromewebstore.google.com/detail/google-voice-byop/khfinpojjggmejifelkmeamiljcehmpm
Deskripsi Helper extension to send Turbo BYOP messages via Google Voice.
Ukuran File 56.1 KB
Jumlah Instalasi 451
Versi Saat Ini 0.3.0
Terakhir Diperbarui 2023-06-07
Tanggal Publikasi 2022-01-06
Pengembang BEI.RE
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://www.bei.re/privacy
Bahasa yang Didukung 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"
    ]
}