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文件

下載Tel Link - URL Caller擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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",
        ""
    ]
}