Google Voice (by Google)

Make calls with Google Voice with a click.

Google Voice (by Google) là gì?

Google Voice (by Google) là một tiện ích mở rộng Chrome được phát triển bởi https://voice.google.com, và tính năng chính của nó là "Make calls with Google Voice with a click.".

Ả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 (by Google)

Tải xuống các tệp mở rộng Google Voice (by Google) 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

                        Extension Features:
- Makes phone numbers on websites callable via Google Voice by just clicking on them.
- If a phone number doesn't turn into a link, you can select the text with your mouse and right-click to make a call (note: might not work with all numbers).

Info:
- If you don't like the extension turning numbers into Voice icon links, you can turn it off in the extension options.                    

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

Tên Google Voice (by Google) Google Voice (by Google)
ID kcnhkahnjcbndmmehfkdnkjomaanaooo
URL Chính Thức https://chromewebstore.google.com/detail/google-voice-by-google/kcnhkahnjcbndmmehfkdnkjomaanaooo
Mô tả Make calls with Google Voice with a click.
Kích Thước Tệp 964 KB
Số Lần Cài Đặt 707,917
Phiên Bản Hiện Tại 3.0.11
Cập Nhật Lần Cuối 2022-01-06
Ngày Phát Hành 2020-04-29
Đánh Giá 3.97/5 Tổng số 6286 Đánh Giá
Nhà Phát Triển https://voice.google.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://voice.google.com/about
URL Trang Trợ Giúp https://support.google.com/voice/?hl=en#topic=1707989
URL Trang Chính Sách Bảo Mật https://www.google.com/policies/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Voice (by Google)",
    "version": "3.0.11",
    "description": "Make calls with Google Voice with a click.",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/logo_voice_2020q4_color_2x_web_16dp.png",
        "32": "\/images\/logo_voice_2020q4_color_2x_web_32dp.png",
        "48": "\/images\/logo_voice_2020q4_color_2x_web_48dp.png",
        "128": "\/images\/logo_voice_2020q4_color_2x_web_96dp.png"
    },
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background_js.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "contentscript.css"
            ],
            "js": [
                "contentscript_js.js"
            ],
            "all_frames": true
        }
    ],
    "options_page": "options.html"
}