Simotel Click2dial chrome extension
Use context menu to call with Simotel
Что такое Simotel Click2dial chrome extension?
Simotel Click2dial chrome extension - это расширение Chrome, разработанное Nasim Telecom, и его основная функция - "Use context menu to call with Simotel".
Снимки экрана расширения
Скачать файл CRX расширения Simotel Click2dial chrome extension
Скачайте файлы расширений Simotel Click2dial chrome extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Simotel Click2Dial chrome extension provide a simple way to send phone numbers to Simotel client apps. How to use: Select the any phone number you wish to call in chrome tabs, open context menu by right click and finally click on Simotel icon, calls send to your Simotel apps. Notice: This app is usable for Simotel PBX.
Основная информация о расширении
Название | Simotel Click2dial chrome extension |
ID | bcmgcllckkknkmlkdlckejiedighncha |
Официальный URL | https://chromewebstore.google.com/detail/simotel-click2dial-chrome/bcmgcllckkknkmlkdlckejiedighncha |
Описание | Use context menu to call with Simotel |
Размер файла | 105 KB |
Количество установок | 284 |
Текущая Версия | 2.0 |
Последнее Обновление | 2023-03-14 |
Дата публикации | 2020-08-14 |
Рейтинг | 5.00/5 Всего 8 оценок |
Разработчик | Nasim Telecom |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://simotel.com/ |
URL страницы помощи | https://simotel.com/contact/ |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simotel Click2dial chrome extension", "description": "Use context menu to call with Simotel", "version": "2.0", "manifest_version": 2, "options_page": "index.html", "permissions": [ "notifications", "contextMenus", "storage", "*:\/\/*\/*" ], "background": { "scripts": [ "js\/simotel.js", "js\/background.js", "js\/jquery.min.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/simotel.js", "js\/jquery.min.js", "js\/content.js" ] } ], "browser_action": { "default_popup": "index.html" }, "icons": { "32": "images\/simotel32.png", "64": "images\/simotel64.png", "128": "images\/simotel128.png" } } |