Google Voice BYOP

Helper extension to send Turbo BYOP messages via Google Voice.

什麼是Google Voice BYOP?

Google Voice BYOP是由BEI.RE開發的Chrome擴展程式,該擴展的主要功能是“Helper extension to send Turbo BYOP messages via Google Voice.”。

擴展截圖

screenshot

下載Google Voice BYOP擴展crx文件

下載Google Voice BYOP擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Google Voice BYOP Google Voice BYOP
ID khfinpojjggmejifelkmeamiljcehmpm
官方網址 https://chromewebstore.google.com/detail/google-voice-byop/khfinpojjggmejifelkmeamiljcehmpm
簡介 Helper extension to send Turbo BYOP messages via Google Voice.
檔案大小 56.1 KB
安裝次數 451
目前版本 0.3.0
更新時間 2023-06-07
上架時間 2022-01-06
開發者 BEI.RE
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://www.bei.re/privacy
支援的語言 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"
    ]
}