Mitel Connect Web Dialer

Converts web page phone numbers to dialable links

Mitel Connect Web Dialer란 무엇입니까?

Mitel Connect Web Dialer은(는) Mitel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts web page phone numbers to dialable links"입니다.

확장 프로그램 스크린샷

screenshot

Mitel Connect Web Dialer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Mitel Connect Web Dialer allows a Mitel Connect user to dial phone numbers appearing on a web page with a single click.                    

확장 프로그램 기본 정보

이름 Mitel Connect Web Dialer Mitel Connect Web Dialer
ID hkciiohohfimeecpjoidoipjpalbabld
공식 URL https://chromewebstore.google.com/detail/mitel-connect-web-dialer/hkciiohohfimeecpjoidoipjpalbabld
설명 Converts web page phone numbers to dialable links
파일 크기 399 KB
설치 횟수 6,075
현재 버전 1.0.18
최근 업데이트 2021-08-09
출시 날짜 2019-03-31
평점 3.83/5 총 12 개의 평점
개발자 Mitel
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.mitel.com
도움말 페이지 URL https://www.mitel.com/mitel-technical-support
개인정보 보호 정책 페이지 URL https://chromeextension.globalauth.mitelcloud.com/privacy_wd.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mitel Connect Web Dialer",
    "short_name": "STConnectWebDialer",
    "version": "1.0.18",
    "author": "Mitel",
    "manifest_version": 2,
    "description": "Converts web page phone numbers to dialable links",
    "browser_action": {
        "default_icon": "img\/mitelLogo-48.png",
        "default_popup": "popup.html",
        "default_title": "Mitel Connect Web Dialer"
    },
    "icons": {
        "16": "img\/mitelLogo-16.png",
        "48": "img\/mitelLogo-48.png",
        "128": "img\/mitelLogo-128.png"
    },
    "background": {
        "scripts": [
            "js\/webdialerBG.js",
            "js\/json2.js"
        ]
    },
    "options_page": "webDialerOptions.html",
    "options_ui": {
        "page": "webDialerOptions.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "js\/log4javascript.js",
                "js\/json2.js",
                "js\/jquery-1.8.2.js",
                "js\/jquery.base64.js",
                "js\/STPS.CASUtils-2.11.js",
                "js\/abcUtils_1.0.0.js",
                "js\/webdialer.js"
            ],
            "css": [
                "css\/webdialer.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "web_accessible_resources": [
        "LogonForm.htm",
        "webDialerOptions.html",
        "img\/*",
        "js\/*",
        "css\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}