ICT Agent

A WebRTC Phone for inbound and outbound calling

ICT Agent란 무엇입니까?

ICT Agent은(는) fiza에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A WebRTC Phone for inbound and outbound calling"입니다.

확장 프로그램 스크린샷

screenshot

ICT Agent 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ICT Agent Extension will embed one WebRTC based VoIP Phone in browser, this phone will remain connected to the main server and will be responsible for inbound and outbound calls, Transfering call as well as for sending DTMF.
It can harvest contacts from the random pages. Agent can access contents, contacts from a single application. Browser can automatically fetch required url depending on the course of call. Automatic URL will eliminate any delay which agent take while searching and finding desired data.
It has Click 2 Call feature, User can click on the number to make call.                    

확장 프로그램 기본 정보

이름 ICT Agent ICT Agent
ID ijnbappmbeilpjabeokdppkhpaobijib
공식 URL https://chrome.google.com/webstore/detail/ict-agent/ijnbappmbeilpjabeokdppkhpaobijib
설명 A WebRTC Phone for inbound and outbound calling
파일 크기 1.12 MB
설치 횟수 14
현재 버전 0.7
최근 업데이트 2021-08-06
출시 날짜 2018-03-04
평점 5.00/5 총 3 개의 평점
개발자 fiza
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://www.ictinnovations.com/
도움말 페이지 URL http://www.ictinnovations.com/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ICT Agent",
    "manifest_version": 2,
    "version": "0.7",
    "description": "A WebRTC Phone for inbound and outbound calling",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "background": {
        "persistent": true,
        "scripts": [
            "jquery-2.2.0.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.2.0.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "ICT Agent"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "contextMenus",
        "storage"
    ]
}