Google Voice (by Google)

Make calls with Google Voice with a click.

Google Voice (by Google)란 무엇입니까?

Google Voice (by Google)은(는) https://voice.google.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make calls with Google Voice with a click."입니다.

확장 프로그램 스크린샷

screenshot

Google Voice (by Google) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Google Voice (by Google) Google Voice (by Google)
ID kcnhkahnjcbndmmehfkdnkjomaanaooo
공식 URL https://chromewebstore.google.com/detail/google-voice-by-google/kcnhkahnjcbndmmehfkdnkjomaanaooo
설명 Make calls with Google Voice with a click.
파일 크기 964 KB
설치 횟수 707,917
현재 버전 3.0.11
최근 업데이트 2022-01-06
출시 날짜 2020-04-29
평점 3.97/5 총 6286 개의 평점
개발자 https://voice.google.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://voice.google.com/about
도움말 페이지 URL https://support.google.com/voice/?hl=en#topic=1707989
개인정보 보호 정책 페이지 URL https://www.google.com/policies/privacy
지원되는 언어 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"
}