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" } } } |