Dialer
Dialer for Google Hangouts - Click to Call any number!
Cos'è Dialer?
Dialer è un'estensione di Chrome sviluppata da Zoqui & Zoqui, e la sua funzione principale è "Dialer for Google Hangouts - Click to Call any number!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Dialer
Scarica i file di estensione Dialer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Dialer |
ID | cebflmlebmjjbdclelkjbcmepkejmcnp |
URL Ufficiale | https://chromewebstore.google.com/detail/dialer/cebflmlebmjjbdclelkjbcmepkejmcnp |
Descrizione | Dialer for Google Hangouts - Click to Call any number! |
Dimensione del File | 148 KB |
Conteggio Installazioni | 570 |
Versione Corrente | 1.02 |
Ultimo Aggiornamento | 2019-10-06 |
Data di Pubblicazione | 2019-10-06 |
Valutazione | 3.25/5 Totale 4 Valutazioni |
Sviluppatore | Zoqui & Zoqui |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |