ChromeCall

ChromeCall extension to dial numbers directly from web pages

什么是ChromeCall?

ChromeCall是由https://oit.co开发的Chrome扩展程序,该扩展的主要功能是“ChromeCall extension to dial numbers directly from web pages”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载ChromeCall扩展crx文件

下载ChromeCall扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        ChromeCall is a tool for OITVOIP users to dial numbers directly from their web page, simply by clicking on it. Access your call history, voicemail and more right from your browser.                    

扩展基本信息

名称 ChromeCall ChromeCall
ID pmhfmheghhjencglkapimohepfndgpac
官方URL https://chromewebstore.google.com/detail/chromecall/pmhfmheghhjencglkapimohepfndgpac
简介 ChromeCall extension to dial numbers directly from web pages
文件大小 1.82 MB
安装次数 155
当前版本 1.0.1
更新时间 2022-11-16
上架时间 2019-12-12
开发者 https://oit.co
电子邮箱 [email protected]
付费类型 free
扩展官网 https://oit.co
帮助页面URL https://oit.co/contact
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChromeCall",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "description": "ChromeCall extension to dial numbers directly from web pages",
    "version": "1.0.1",
    "action": {
        "default_popup": "html\/menu.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/cc content.css"
            ],
            "js": [
                "js\/jquery-3.3.1.min.js",
                "js\/axios.min.js",
                "js\/rsvp.min.js",
                "config.js",
                "js\/stub.js",
                "js\/search.js",
                "js\/api.js",
                "js\/popup.js",
                "js\/keybind.js",
                "js\/filter.js",
                "js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage",
        "contextMenus"
    ],
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "img\/*"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}