Dialer
Dialer for Google Hangouts - Click to Call any number!
什么是Dialer?
Dialer是由Zoqui & Zoqui开发的Chrome扩展程序,该扩展的主要功能是“Dialer for Google Hangouts - Click to Call any number!”。
扩展截图
下载Dialer扩展crx文件
下载Dialer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Do you want to call land lines and mobile for FREE?! (US and Canada) Install Dialer, and voilá! Dialer is a Google Chrome Extension which provides a simple, easy, fast and cheap way to make phone calls throught Google Hangouts. You can type the phone digits or select them from any web page.
扩展基本信息
名称 | Dialer |
ID | cebflmlebmjjbdclelkjbcmepkejmcnp |
官方URL | https://chromewebstore.google.com/detail/dialer/cebflmlebmjjbdclelkjbcmepkejmcnp |
简介 | Dialer for Google Hangouts - Click to Call any number! |
文件大小 | 148 KB |
安装次数 | 570 |
当前版本 | 1.02 |
更新时间 | 2019-10-06 |
上架时间 | 2019-10-06 |
评分 | 3.25/5 共4次评分 |
开发者 | Zoqui & Zoqui |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.02", "name": "Dialer", "description": "Dialer for Google Hangouts - Click to Call any number!", "icons": { "16": "images\/callme_white_16.png", "48": "images\/callme_white_48.png", "128": "images\/callme_white_128.png" }, "browser_action": { "default_icon": "images\/callme_white_600.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/hangouts.google.com\/*" ], "js": [ "context.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+A", "mac": "Command+Shift+A", "chromeos": "Ctrl+Shift+A", "linux": "Ctrl+Shift+A" } } }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "webNavigation", "https:\/\/hangouts.google.com\/*", "tabs", "contextMenus" ] } |