Call form browser

Sends call request with the selected number

什麼是Call form browser?

Call form browser是由Jis van Overschot開發的Chrome擴展程式,該擴展的主要功能是“Sends call request with the selected number”。

擴展截圖

screenshot

下載Call form browser擴展crx文件

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

擴展使用說明

                        A Chrome extension to call from the browser

How to use:
First make sure the call protocol you want is set. To do this, click on the extension icon and go to options. In the options you can select your preferred call protocol (default is tel).

There are two ways you can use this extension.

The first one is to highlight a phone number and right click on the highlighted 
phone number and select "Call: {phone number}" in the context menu.

The other options is to find a tel link. Just right click on the phone number link 
and the option "Call from link" will appear in the context menu.


Report issues:
If you are having any difficulties with this extension you can create an issue on this page https://github.com/JWOverschot/Call-form-browser-Chrome-Ext./issues                    

擴展基本資訊

名稱 Call form browser Call form browser
ID pohbhddgjcfniihallmhmialdjcboeof
官方網址 https://chromewebstore.google.com/detail/call-form-browser/pohbhddgjcfniihallmhmialdjcboeof
簡介 Sends call request with the selected number
檔案大小 16.44 KB
安裝次數 21
目前版本 1.0.0
更新時間 2019-11-03
上架時間 2019-11-02
開發者 Jis van Overschot
付費類型 free
擴展官網 https://github.com/JWOverschot/Call-form-browser-Chrome-Ext.
說明頁面URL https://github.com/JWOverschot/Call-form-browser-Chrome-Ext./issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Call form browser",
    "version": "1.0.0",
    "description": "Sends call request with the selected number",
    "author": "Jis van Overschot",
    "permissions": [
        "contextMenus",
        "storage",
        ""
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/phone_icon16.png",
        "32": "images\/phone_icon32.png",
        "48": "images\/phone_icon48.png",
        "128": "images\/phone_icon128.png"
    },
    "manifest_version": 2
}