ICT Agent

A WebRTC Phone for inbound and outbound calling

Was ist ICT Agent?

ICT Agent ist eine Chrome-Erweiterung, die von fiza entwickelt wurde, und ihr Hauptmerkmal ist "A WebRTC Phone for inbound and outbound calling".

Erweiterungsscreenshots

screenshot

ICT Agent-Erweiterungs-CRX-Datei herunterladen

Laden Sie ICT Agent-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ICT Agent ICT Agent
ID ijnbappmbeilpjabeokdppkhpaobijib
Offizielle URL https://chrome.google.com/webstore/detail/ict-agent/ijnbappmbeilpjabeokdppkhpaobijib
Beschreibung A WebRTC Phone for inbound and outbound calling
Dateigröße 1.12 MB
Installationsanzahl 14
Aktuelle Version 0.7
Letztes Update 2021-08-06
Veröffentlichungsdatum 2018-03-04
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler fiza
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://www.ictinnovations.com/
Hilfeseite URL http://www.ictinnovations.com/
Unterstützte Sprachen 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"
    ]
}