Google Voice BYOP

Helper extension to send Turbo BYOP messages via Google Voice.

Google Voice BYOP là gì?

Google Voice BYOP là một tiện ích mở rộng Chrome được phát triển bởi BEI.RE, và tính năng chính của nó là "Helper extension to send Turbo BYOP messages via Google Voice.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Voice BYOP

Tải xuống các tệp mở rộng Google Voice BYOP dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Voice BYOP Google Voice BYOP
ID khfinpojjggmejifelkmeamiljcehmpm
URL Chính Thức https://chromewebstore.google.com/detail/google-voice-byop/khfinpojjggmejifelkmeamiljcehmpm
Mô tả Helper extension to send Turbo BYOP messages via Google Voice.
Kích Thước Tệp 56.1 KB
Số Lần Cài Đặt 451
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2023-06-07
Ngày Phát Hành 2022-01-06
Nhà Phát Triển BEI.RE
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.bei.re/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}