ChromeCall

ChromeCall extension to dial numbers directly from web pages

Что такое ChromeCall?

ChromeCall - это расширение Chrome, разработанное https://oit.co, и его основная функция - "ChromeCall extension to dial numbers directly from web pages".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения ChromeCall

Скачайте файлы расширений 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:\/\/*\/*"
            ]
        }
    ]
}