FoxTel Click To Call
This extension detects phone numbers and add phone icon with link to an external application.
什麼是FoxTel Click To Call?
FoxTel Click To Call是由Turfanza Solutions開發的Chrome擴展程式,該擴展的主要功能是“This extension detects phone numbers and add phone icon with link to an external application.”。
擴展截圖
下載FoxTel Click To Call擴展crx文件
下載FoxTel Click To Call擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Dial a phone number by just clicking on it while surfing the web. Click To Call extension detects phone numbers from the web pages and add a phone icon with link to selected protocol. *Protocols can be selected from Options page. *It recognizes US phone numbers by default. Users can opt to use custom regex pattern for detection. *It also works on dynamic web pages that loads content on the fly. This extension requires an external application that can handle tel, sip or callto protocols.
擴展基本資訊
名稱 | FoxTel Click To Call |
ID | agfjggaihnlnaeijacpmbkpgpanlihcd |
官方網址 | https://chromewebstore.google.com/detail/foxtel-click-to-call/agfjggaihnlnaeijacpmbkpgpanlihcd |
簡介 | This extension detects phone numbers and add phone icon with link to an external application. |
檔案大小 | 15.66 KB |
安裝次數 | 276 |
目前版本 | 1.0.2 |
更新時間 | 2020-02-04 |
上架時間 | 2020-01-30 |
評分 | 3.86/5 共 7 次評分 |
開發者 | Turfanza Solutions |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FoxTel Click To Call", "short_name": "ClickToCall", "description": "This extension detects phone numbers and add phone icon with link to an external application.", "version": "1.0.2", "options_page": "options.html", "browser_action": { "default_icon": "img\/icon48.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "js": [ "clickToCall.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "img\/*.png" ] } |