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 |
官方URL | 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" ] } |