Send from Gmail (by Google)
Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email
Cos'è Send from Gmail (by Google)?
Send from Gmail (by Google) è un'estensione di Chrome sviluppata da [email protected], e la sua funzione principale è "Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Send from Gmail (by Google)
Scarica i file di estensione Send from Gmail (by Google) 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
This extension will open a Compose window in Gmail when you click any email address on a webpage. It also provides a button that will create a Gmail message when clicked, using the page title as the subject and selected page text and link address as the message. For setting the domain name of your "Google Apps for your domain" account, click Options. By installing this extension, you agree to the Terms of Service at https://chrome.google.com/extensions/intl/en/gallery_tos.html
Informazioni di Base sull'Estensione
Nome | Send from Gmail (by Google) |
ID | pgphcomnlaojlmmcjmiddhdapjpbgeoc |
URL Ufficiale | https://chromewebstore.google.com/detail/send-from-gmail-by-google/pgphcomnlaojlmmcjmiddhdapjpbgeoc |
Descrizione | Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email |
Dimensione del File | 17.35 KB |
Conteggio Installazioni | 885,631 |
Versione Corrente | 1.16 |
Ultimo Aggiornamento | 2013-06-25 |
Data di Pubblicazione | 2013-06-25 |
Valutazione | 4.01/5 Totale 4165 Valutazioni |
Sviluppatore | [email protected] |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Send from Gmail (by Google)", "version": "1.16", "description": "Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email", "content_scripts": [ { "all_frames": true, "js": [ "mailto.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "http:\/\/*.google.com\/" ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "browser_action": { "default_icon": "images\/gmail-extension-19.png", "default_title": "Send this link with Gmail" }, "icons": { "128": "images\/gmail-extension-128.png", "64": "images\/gmail-extension-64.png", "32": "images\/gmail-extension-32.png", "16": "images\/gmail-extension-16.png" } } |