Byphone Number Linkify
An extension to turn phone numbers on pages into click to dial links.
Что такое Byphone Number Linkify?
Byphone Number Linkify - это расширение Chrome, разработанное Voxbit Dev, и его основная функция - "An extension to turn phone numbers on pages into click to dial links.".
Снимки экрана расширения
Скачать файл CRX расширения Byphone Number Linkify
Скачайте файлы расширений Byphone Number Linkify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Byphone Number Linkify is a handy chrome extension designed to make it easier to use click to dial with the Byphone Hosted PBX solution. It will auto scan web pages you visit to make it easier to dial any phone numbers on page. You can also highlight a body of text, right click and select "Click to Dial" to extract phone numbers.
Основная информация о расширении
Название | Byphone Number Linkify |
ID | lehkpanjomjggobemfabmiodmkbcnlnb |
Официальный URL | https://chromewebstore.google.com/detail/byphone-number-linkify/lehkpanjomjggobemfabmiodmkbcnlnb |
Описание | An extension to turn phone numbers on pages into click to dial links. |
Размер файла | 281 KB |
Количество установок | 39 |
Текущая Версия | 0.0.4 |
Последнее Обновление | 2018-05-30 |
Дата публикации | 2018-05-30 |
Разработчик | Voxbit Dev |
Тип оплаты | free |
Официальный сайт расширения | https://byphone.co.uk |
URL страницы помощи | https://documentation.byphone.co.uk |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Byphone Number Linkify", "version": "0.0.4", "manifest_version": 2, "description": "An extension to turn phone numbers on pages into click to dial links.", "short_name": "Click To Dial on Byphone", "homepage_url": "http:\/\/byphone.co.uk", "permissions": [ "storage", "contextMenus", "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "js\/shared.js", "js\/background.js" ], "persistent": true }, "default_locale": "en", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/shared.js", "js\/libphonenumber-js.min.js", "js\/content.js" ], "css": [ "css\/style.css" ] } ], "browser_action": { "default_popup": "html\/popup.html", "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } } |