Google Voice BYOP

Helper extension to send Turbo BYOP messages via Google Voice.

Google Voice BYOPคืออะไร?

Google Voice BYOP เป็นส่วนขยายของ Chrome ที่พัฒนาโดย BEI.RE และคุณลักษณะหลักของมันคือ "Helper extension to send Turbo BYOP messages via Google Voice."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Voice BYOP

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
    ]
}