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]에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |