NTA Click to Dial
Detects telephone numbers on any web page, and turns them into clickable links to call. An account with hosted.nta.co.uk is…
什么是NTA Click to Dial?
NTA Click to Dial是由NTA.co.uk开发的Chrome扩展程序,该扩展的主要功能是“Detects telephone numbers on any web page, and turns them into clickable links to call. An account with hosted.nta.co.uk is…”。
扩展截图
下载NTA Click to Dial扩展crx文件
下载NTA Click to Dial扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Detects telephone numbers on any web page, and turns them into clickable links to call. An account with hosted.nta.co.uk is required. After downloading the plugin, enter portal username and password, your extension number and press save. Then restart chrome. Phone numbers will now be converted to clickable links. For support please email [email protected] or dial 01708393939. For our Privacy Policy please view: https://nta.co.uk/legal/privacy_policy/
扩展基本信息
名称 | NTA Click to Dial |
ID | imobkfopjlkgcfjiidiiegionaegfioi |
官方URL | https://chromewebstore.google.com/detail/nta-click-to-dial/imobkfopjlkgcfjiidiiegionaegfioi |
简介 | Detects telephone numbers on any web page, and turns them into clickable links to call. An account with hosted.nta.co.uk is… |
文件大小 | 2.59 MB |
安装次数 | 43 |
当前版本 | 1.3.3 |
更新时间 | 2022-01-29 |
上架时间 | 2021-12-17 |
开发者 | NTA.co.uk |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://nta.co.uk |
帮助页面URL | https://nta.co.uk/contact/ |
隐私政策页面URL | https://nta.co.uk/legal/privacy_policy |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NTA Click to Dial", "version": "1.3.3", "icons": { "128": "images\/icon128.png" }, "content_scripts": [ { "all_frames": true, "js": [ "mutation-summary.js", "jquery-3.1.0.min.js", "content.js" ], "css": [ "content.css" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*" ], "run_at": "document_start" } ], "options_page": "options.html", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/*\/*", "storage", "contextMenus" ], "browser_action": { "default_icon": "images\/icon128.png", "default_title": "" }, "background": { "scripts": [ "jquery-3.1.0.min.js", "bg.js" ] }, "web_accessible_resources": [ "images\/*.png", "options.html" ] } |