Dialer
Dialer for Google Hangouts - Click to Call any number!
Dialerคืออะไร?
Dialer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zoqui & Zoqui และคุณลักษณะหลักของมันคือ "Dialer for Google Hangouts - Click to Call any number!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dialer
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |