ICT Agent

A WebRTC Phone for inbound and outbound calling

What is ICT Agent?

ICT Agent is a Chrome extension developed by fiza, and its main feature is "A WebRTC Phone for inbound and outbound calling".

Extension Screenshots

screenshot

Download ICT Agent Extension CRX File

Download ICT Agent extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ICT Agent ICT Agent
ID ijnbappmbeilpjabeokdppkhpaobijib
Official URL https://chrome.google.com/webstore/detail/ict-agent/ijnbappmbeilpjabeokdppkhpaobijib
Description A WebRTC Phone for inbound and outbound calling
File Size 1.12 MB
Installation Count 14
Current Version 0.7
Last Updated 2021-08-06
Publish Date 2018-03-04
Rating 5.00/5 Total 3 Ratings
Developer fiza
Email [email protected]
Payment Type free
Extension Website http://www.ictinnovations.com/
Help Page URL http://www.ictinnovations.com/
Supported Languages 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"
    ]
}