ICT Agent

A WebRTC Phone for inbound and outbound calling

ما هو ICT Agent؟

ICT Agent هو إضافة Chrome تم تطويرها بواسطة fiza، والميزة الرئيسية لها هي "A WebRTC Phone for inbound and outbound calling".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ICT Agent

قم بتنزيل ملفات الامتداد ICT Agent بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/
عنوان صفحة المساعدة 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"
    ]
}