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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
    ]
}