Byphone Number Linkify
An extension to turn phone numbers on pages into click to dial links.
Byphone Number Linkify là gì?
Byphone Number Linkify là một tiện ích mở rộng Chrome được phát triển bởi Voxbit Dev, và tính năng chính của nó là "An extension to turn phone numbers on pages into click to dial links.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Byphone Number Linkify
Tải xuống các tệp mở rộng Byphone Number Linkify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Byphone Number Linkify |
ID | lehkpanjomjggobemfabmiodmkbcnlnb |
URL Chính Thức | https://chromewebstore.google.com/detail/byphone-number-linkify/lehkpanjomjggobemfabmiodmkbcnlnb |
Mô tả | An extension to turn phone numbers on pages into click to dial links. |
Kích Thước Tệp | 281 KB |
Số Lần Cài Đặt | 39 |
Phiên Bản Hiện Tại | 0.0.4 |
Cập Nhật Lần Cuối | 2018-05-30 |
Ngày Phát Hành | 2018-05-30 |
Nhà Phát Triển | Voxbit Dev |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://byphone.co.uk |
URL Trang Trợ Giúp | https://documentation.byphone.co.uk |
Ngôn Ngữ Được Hỗ Trợ | 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" } } } |