2-Pane for Gmail/Calendar
Tune Gmail by hiding the top navigation. Easily turned on and off through an icon in addressbar. It works with Google Calendar too.
2-Pane for Gmail/Calendar란 무엇입니까?
2-Pane for Gmail/Calendar은(는) codef0rmer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tune Gmail by hiding the top navigation. Easily turned on and off through an icon in addressbar. It works with Google Calendar too."입니다.
확장 프로그램 스크린샷
2-Pane for Gmail/Calendar 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Google chrome extension which makes more room for mails by converting Gmail into a two-pane navigation scheme. To access controls hidden in 2-Pane mode, click the icon in the addressbar. Now it works for Google Calendar as well. Enjoy!
확장 프로그램 기본 정보
이름 | |
ID | jimomiffmbadddfkmhpafdbbofnkdeec |
공식 URL | https://chrome.google.com/webstore/detail/2-pane-for-gmailcalendar/jimomiffmbadddfkmhpafdbbofnkdeec |
설명 | Tune Gmail by hiding the top navigation. Easily turned on and off through an icon in addressbar. It works with Google Calendar too. |
파일 크기 | 55.3 KB |
설치 횟수 | 302 |
현재 버전 | 0.9 |
최근 업데이트 | 2014-12-18 |
출시 날짜 | 2014-12-18 |
평점 | 4.57/5 총 7 개의 평점 |
개발자 | codef0rmer |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://amitgharat.wordpress.com/2011/11/04/gmail-can-be-more-awesome/ |
도움말 페이지 URL | http://amitgharat.wordpress.com/2011/11/04/gmail-can-be-more-awesome/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "2-Pane for Gmail\/Calendar", "version": "0.9", "manifest_version": 2, "description": "Tune Gmail by hiding the top navigation. Easily turned on and off through an icon in addressbar. It works with Google Calendar too.", "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "all_frames": true, "js": [ "js\/jquery.min.js", "js\/app.js" ], "matches": [ "http:\/\/mail.google.com\/*", "https:\/\/mail.google.com\/*", "http:\/\/www.google.com\/calendar\/*", "https:\/\/www.google.com\/calendar\/*" ], "run_at": "document_idle" } ], "icons": { "128": "images\/logo_128.gif", "19": "images\/logo_19.gif", "48": "images\/logo_48.gif", "64": "images\/logo_64.gif" }, "page_action": { "default_icon": "images\/logo_48.gif", "default_popup": "popup.html", "default_title": "2-Pane for Gmail\/Calendar: Click the icon to toggle the Navigation Bar maximizing vertical space" }, "permissions": [ "tabs", "http:\/\/mail.google.com\/", "https:\/\/mail.google.com\/", "http:\/\/www.google.com\/calendar\/", "https:\/\/www.google.com\/calendar\/", "unlimitedStorage" ] } |