Grandstream (click-to-call)

Converts phone numbers to active links for making calls over Grandstream phones

Что такое Grandstream (click-to-call)?

Grandstream (click-to-call) - это расширение Chrome, разработанное alexey-gamov, и его основная функция - "Converts phone numbers to active links for making calls over Grandstream phones".

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

screenshot

Скачать файл CRX расширения Grandstream (click-to-call)

Скачайте файлы расширений Grandstream (click-to-call) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        • Full telephone numbers parsing on sites
• Current telephone status on call
• Dial number from extension and sites
• Notifications with call controls                    

Основная информация о расширении

Название Grandstream (click-to-call) Grandstream (click-to-call)
ID gcmffhldcmblemadbaooobdopcbjkcpc
Официальный URL https://chromewebstore.google.com/detail/grandstream-click-to-call/gcmffhldcmblemadbaooobdopcbjkcpc
Описание Converts phone numbers to active links for making calls over Grandstream phones
Размер файла 26.98 KB
Количество установок 207
Текущая Версия 0.2.6
Последнее Обновление 2023-03-10
Дата публикации 2021-04-29
Рейтинг 5.00/5 Всего 2 оценок
Разработчик alexey-gamov
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/alexey-gamov/grandstream-ctc
Поддерживаемые языки de,en,es,pl,ru,uk,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grandstream (click-to-call)",
    "description": "__MSG_description__",
    "homepage_url": "https:\/\/github.com\/alexey-gamov\/grandstream-ctc",
    "default_locale": "en",
    "version": "0.2.6",
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_icon": "assets\/icon.png",
        "default_popup": "pages\/popup.html"
    },
    "options_ui": {
        "page": "pages\/options.html"
    },
    "omnibox": {
        "keyword": "call"
    },
    "permissions": [
        "notifications",
        "activeTab",
        "storage",
        "http:\/\/*\/"
    ]
}