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