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
Τι είναι το Send from Gmail (by Google);
Το Send from Gmail (by Google) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον [email protected], και η κύρια λειτουργία του είναι "Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Send from Gmail (by Google)
Λήψη αρχείων επέκτασης Send from Gmail (by Google) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Send from Gmail (by Google) |
ID | pgphcomnlaojlmmcjmiddhdapjpbgeoc |
Επίσημο URL | https://chromewebstore.google.com/detail/send-from-gmail-by-google/pgphcomnlaojlmmcjmiddhdapjpbgeoc |
Περιγραφή | Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email |
Μέγεθος Αρχείου | 17.35 KB |
Αριθμός Εγκαταστάσεων | 885,631 |
Τρέχουσα Έκδοση | 1.16 |
Τελευταία Ενημέρωση | 2013-06-25 |
Ημερομηνία Δημοσίευσης | 2013-06-25 |
Αξιολόγηση | 4.01/5 Συνολικά 4165 Αξιολογήσεις |
Προγραμματιστής | [email protected] |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } } |