Athena Browser Integration Extension

Athena Integration Extension

Athena Browser Integration Extension란 무엇입니까?

Athena Browser Integration Extension은(는) dasanelectron.rnd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Athena Integration Extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Athena Browser Integration Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Title: 
The Chrome host extension for USB headset of JPL Telecom Inc. It can interwork with iPECS One softphone UC client that is introduced by Ericssion LG.

Explanation:
The iPECS One softphone UC client is developed by Ericsson LG and it is using over the world.
The detail information can be seen at

https://ipecs.com/product/ipecs-one

The iPECS One is developed on Web RTC platform. It can be used with internal PC speaker and microphone or external speaker and microphone.  Like another common soft UC clients, user demands to use the softphone with USB interface headsets. 

Actually, USB headset should have typical consumer functionalities like volume increment and decrement. And also, it should have telephony related HID capabilities. If connected USB headset has telephony HID capabilities, some major call control interworking should be supported. Usually, they are call active, call end, mute, unmute, and ring alert commands.

The major functionality of "Athena Browser Integration Extension" is a kind of bridge interfacing between iPECS One softphone UC client and JPL Telecom's USB headset.

1. Action from iPECS One to USB Headset
     A. Incoming Call Ring Alert
     B. Off-Hook on iPECS One
     C. On-Hook on iPECS One
     D. Mute / Unmute on iPECS One

2. Action from USB Headset to iPECS One
     A. Call Active action to iPECS One
     C. Call End action to iPECS One
     D. Mute / Unmute button action to iPECS One

How it works:

1. When incoming call is coming: Ringing
WEB RTC Softphone    ---> extension --> USB control application --> USB headset.

2. Call Active: 
  1) When user takes a call at iPECS One softphone UC Client, 
      WEB RTC Softphone    ---> extension --> USB control application --> USB  headset.
      
  2) When user takes a call with using USB headset,
      USB headset. --> USB control application --> extension --> WEB RTC Softphone

3. Call End
   1) When user ends a call at iPECS One softphone UC Client,
      WEB RTC Softphone    ---> extension --> USB control application --> USB headset.

   2) When user ends a call with using USB headset,
      USB  headset. --> USB control application --> extension --> WEB RTC Softphone


4. Mute/Unmute
   1) When user mutes or unmutes a call at iPECS One softphone UC Client,
        WEB RTC Softphone    ---> extension --> USB  control application --> USB  headset.

   2) When user mutes or unmutes a call with using USB headset,
       USB headset. --> USB control application --> extension --> WEB RTC Softphone                    

확장 프로그램 기본 정보

이름 Athena Browser Integration Extension Athena Browser Integration Extension
ID gbaaffppekiinapleoblkaladhdigoii
공식 URL https://chromewebstore.google.com/detail/athena-browser-integratio/gbaaffppekiinapleoblkaladhdigoii
설명 Athena Integration Extension
파일 크기 17.17 KB
설치 횟수 427
현재 버전 1.0.5
최근 업데이트 2022-02-09
출시 날짜 2021-09-25
개발자 dasanelectron.rnd
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.jpltele.com/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Athena Browser Integration Extension",
    "description": "Athena Integration Extension",
    "manifest_version": 3,
    "version": "1.0.5",
    "version_name": "1.0.5",
    "icons": {
        "16": "icon16_Athena.png",
        "48": "icon48_Athena.png",
        "128": "icon128_Athena.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "js": [
                "content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "nativeMessaging",
        "storage"
    ],
    "host_permissions": [
        "https:\/\/www.jpltele.com\/",
        "*:\/\/*\/*"
    ],
    "action": []
}