Tel Link - URL Caller

This allows you to place a call via a url. This is typically used with FreePBX with a Call.php script

Tel Link - URL Caller란 무엇입니까?

Tel Link - URL Caller은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This allows you to place a call via a url. This is typically used with FreePBX with a Call.php script"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Tel Link - URL Caller 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This allows you to link TEL: links with a URL. 

This is often used with FreePBX servers with a Call.php extension. For example I use this to connect my local PBX server to my computer. When I want to call a user or a company I just click their phone number and it links to my desk phone. 

If you have a FreePBX server and want to add a way to click to make calls this is the plugin for you. I am sure it will work with other providers as well, I am just not familiar with them. 

This project is open source so please feel free to checkout the github page.                    

확장 프로그램 기본 정보

이름 Tel Link - URL Caller Tel Link - URL Caller
ID mhmcegieaakbdpclddfoaobdllanphad
공식 URL https://chromewebstore.google.com/detail/tel-link-url-caller/mhmcegieaakbdpclddfoaobdllanphad
설명 This allows you to place a call via a url. This is typically used with FreePBX with a Call.php script
파일 크기 124 KB
설치 횟수 106
현재 버전 0.0.2
최근 업데이트 2019-08-30
출시 날짜 2019-08-25
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tel Link - URL Caller",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "This allows you to place a call via a url. This is typically used with FreePBX with a Call.php script",
    "homepage_url": "http:\/\/extensionizr.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/js\/jquery\/jquery.js",
                "js\/background.js"
            ]
        }
    ],
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "options_ui": {
        "page": "src\/options\/index.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "browser action demo",
        "default_popup": "src\/options\/index.html"
    },
    "permissions": [
        "contentSettings",
        "storage",
        ""
    ]
}