Dialer
Dialer for Google Hangouts - Click to Call any number!
Dialer क्या है?
Dialer Zoqui & Zoqui द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Dialer for Google Hangouts - Click to Call any number!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Dialer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |