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) [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 फ़ाइल डाउनलोड करें
crx प्रारूप में Send from Gmail (by Google) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |