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文件

下载ICT Agent扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}