SkySwitch C2C

A Chrome Extension that will allow you to implement click to call (also called Click to Dial) with the NetSapiens softswitch.…

SkySwitch C2C란 무엇입니까?

SkySwitch C2C은(는) SVM Tech에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome Extension that will allow you to implement click to call (also called Click to Dial) with the NetSapiens softswitch.…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

SkySwitch C2C 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A Chrome Extension that will allow you to implement click to call (also called Click to Dial) with the NetSapiens softswitch.

Version 1.4:
-  Works with websites that use frames
-  Detects numbers that use "." instead of "-"

Version 1.5:
-  If number string starts with "+" and next number is not a "1" then add "011" to the dialstring

Version 1.6
1.  Add field to options page with label:  International Prefix
2.   Change Country Code field to a dropdown list with Countries.  Auto-populate country code for the country chosen.

- If number string starts with "+" and next number is not equal to [Country Code] then add [International Prefix] to the dialstring.   
- If number string starts with "+" and next number is equal to [Country Code] then just strip the "+"

Example 1:  
Country Code is 1 and International Prefix is 011
+6328100976 will become 0116328100976

Example 2:
Country Code is 63 and International Prefix is 00
+6328100976 will become 6328100976

Example 3:   
Country Code is 1 and International Prefix is 011
+17477778100 will become 17477778100

Example 4:
Country Code is 63 and International Prefix is 00
+17477778100 will become 0017477778100

Version 1.8
Fixed incompatibilities with jquery                    

확장 프로그램 기본 정보

이름 SkySwitch C2C SkySwitch C2C
ID jdggnicdcnlkeidmliiipbnnebjkccoa
공식 URL https://chrome.google.com/webstore/detail/skyswitch-c2c/jdggnicdcnlkeidmliiipbnnebjkccoa
설명 A Chrome Extension that will allow you to implement click to call (also called Click to Dial) with the NetSapiens softswitch.…
파일 크기 77.28 KB
설치 횟수 55
현재 버전 1.8
최근 업데이트 2016-05-23
출시 날짜 2016-05-23
개발자 SVM Tech
결제 유형 free
확장 프로그램 웹 사이트 http://www.skyswitch.com/solutions-netsapiens-service-providers/
도움말 페이지 URL http://www.skyswitch.com/support/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SkySwitch C2C",
    "version": "1.8",
    "description": "",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "c2c.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "activeTab",
        "tabs",
        "storage"
    ],
    "manifest_version": 2,
    "web_accessible_resources": [
        "pencil-15.png"
    ]
}