Click to call with Linphone

Detect numbers on page and convert them to sip with params

什麼是Click to call with Linphone?

Click to call with Linphone是由appscre10fi開發的Chrome擴展程式,該擴展的主要功能是“Detect numbers on page and convert them to sip with params”。

擴展截圖

screenshot

下載Click to call with Linphone擴展crx文件

下載Click to call with Linphone擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Example: Phone 0123456789, use sip with params - sip:$NUMBER@YOURSIPPROVIDER?method=call
phone number on web page will replace to link - 0123456789.
When user click on this link - will run Linphone (or other Soft Phone) and call to client with number 0123456789.

Don't forget replace sip4.w3tel.net to your sip provider (hoster).

Is not official extension for Linphone.                    

擴展基本資訊

名稱 Click to call with Linphone Click to call with Linphone
ID fnidkdfjahchalbdbgcedgdphiaecalm
官方網址 https://chromewebstore.google.com/detail/click-to-call-with-linpho/fnidkdfjahchalbdbgcedgdphiaecalm
簡介 Detect numbers on page and convert them to sip with params
檔案大小 53.78 KB
安裝次數 274
目前版本 0.0.2
更新時間 2021-03-06
上架時間 2021-03-06
開發者 appscre10fi
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.cre10fi.fr/
隱私政策頁面URL https://www.cre10fi.fr/mentions-legales
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "header.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click to call with Linphone"
    },
    "content_scripts": [
        {
            "js": [
                "header.js",
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google.com https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com; object-src 'self' https:\/\/www.google.com https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com",
    "description": "Detect numbers on page and convert them to sip with params",
    "icons": {
        "128": "icon.png"
    },
    "manifest_version": 2,
    "name": "Click to call with Linphone",
    "version": "0.0.2"
}