Dialpad Extension
Quick launch the Dialpad app and link phone numbers to call via Dialpad
Dialpad Extension란 무엇입니까?
Dialpad Extension은(는) https://dialpad.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quick launch the Dialpad app and link phone numbers to call via Dialpad"입니다.
확장 프로그램 스크린샷
Dialpad Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Call or text anyone with Dialpad directly from your browser by clicking on a phone number. Gmail users get the ability to click to call directly from the contact card in Gmail when you hover over someone's name. When we detect a phone number tied to a contact's email address we will show the button to quickly call them using Dialpad. NOTE: Create a list of website exceptions for sites where you don't want to make phone numbers clickable or for sites where you want to allow linking of unformatted phone numbers. Get the newest features and functionality with the Dialpad Chrome CTI (https://chrome.google.com/webstore/detail/dialpad-chrome-cti/lmecinlocgbbcdgbhkidmeijhdhlngjp).
확장 프로그램 기본 정보
이름 | Dialpad Extension |
ID | mhoeffeimbfbmpccjcodjeeglinbpicp |
공식 URL | https://chromewebstore.google.com/detail/dialpad-extension/mhoeffeimbfbmpccjcodjeeglinbpicp |
설명 | Quick launch the Dialpad app and link phone numbers to call via Dialpad |
파일 크기 | 94.78 KB |
설치 횟수 | 40,000 |
현재 버전 | 0.9.23 |
최근 업데이트 | 2023-09-08 |
출시 날짜 | 2020-05-11 |
평점 | 3.13/5 총 38 개의 평점 |
개발자 | https://dialpad.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://dialpad.com |
도움말 페이지 URL | https://help.dialpad.com |
개인정보 보호 정책 페이지 URL | https://www.dialpad.com/legal |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dialpad Extension", "description": "Quick launch the Dialpad app and link phone numbers to call via Dialpad", "version": "0.9.23", "icons": { "16": "images\/icon_16.png", "128": "images\/icon_128.png" }, "browser_action": { "default_icon": { "19": "images\/icon_19.png", "38": "images\/icon_38.png" }, "default_title": "Launch Dialpad" }, "permissions": [ "contextMenus", "tabs", "storage", "cookies", "*:\/\/dialpad.com\/", "*:\/\/www.dialpad.com\/" ], "externally_connectable": { "matches": [ "*:\/\/*.dialpad.com\/*" ] }, "background": { "scripts": [ "js\/lib\/jquery-3.1.1.min.js", "js\/lib\/underscore.js", "js\/constants.js", "js\/repo.js", "js\/background.js" ] }, "options_ui": { "page": "html\/options.html", "chrome_style": true }, "options_page": "html\/options_legacy.html", "content_scripts": [ { "run_at": "document_idle", "all_frames": true, "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "*:\/\/www.switch.co\/*", "*:\/\/dialpad.com\/*", "*:\/\/fstelephony.appspot.com\/*" ], "js": [ "js\/lib\/jquery-3.1.1.min.js", "js\/lib\/underscore.js", "js\/constants.js", "js\/content_script.js" ], "css": [ "css\/content-script.css" ] } ] } |