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" } } |