Gmail condensed style
Gmail condensed style
Gmail condensed style란 무엇입니까?
Gmail condensed style은(는) Yury Ershov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gmail condensed style"입니다.
확장 프로그램 스크린샷
Gmail condensed style 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Less white space -> more information on the page! * Since version 2.0 there are settings! (if the extension fails to start, try disabling and re-enabling it on the chrome://extensions page) * Remove useless paddings for the most of the page elements * Make buttons look as active clickable elements * Add border around email compose text area * Highlight the email row in the list on hover/focus * Narrow down labels tree when always expanded; Widen it when hover-expanded * Less space for top/search bar * Disable animations * Multi inbox section labels clearer design
확장 프로그램 기본 정보
이름 | ![]() |
ID | emgpbaognndhnclaogipmikglnhhbhcg |
공식 URL | https://chrome.google.com/webstore/detail/gmail-condensed-style/emgpbaognndhnclaogipmikglnhhbhcg |
설명 | Gmail condensed style |
파일 크기 | 20.49 KB |
설치 횟수 | 108 |
현재 버전 | 2.0.11 |
최근 업데이트 | 2020-04-26 |
출시 날짜 | 2020-04-26 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Yury Ershov |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail condensed style", "short_name": "Gmail condensed style", "version": "2.0.11", "description": "Gmail condensed style", "permissions": [ "activeTab", "tabs", "storage", "https:\/\/mail.google.com\/*" ], "web_accessible_resources": [ "style.css" ], "options_ui": { "page": "options.html", "open_in_tab": false }, "browser_action": { "default_popup": "options.html", "default_title": "Gmail condensed options" }, "background": { "scripts": [ "eventpage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "exclude_globs": [ "https:\/\/mail.google.com\/*features=-Sapinto*", "https:\/\/mail.google.com\/*features=*,-Sapinto*", "https:\/\/mail.google.com\/*sapinto=0*" ], "all_frames": false, "js": [ "gen.js", "chrome.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/mail.google.com\/*" ], "exclude_globs": [ "https:\/\/mail.google.com\/*features=-Sapinto*", "https:\/\/mail.google.com\/*features=*,-Sapinto*", "https:\/\/mail.google.com\/*sapinto=0*" ], "all_frames": false, "js": [ "content.js" ], "run_at": "document_end" } ] } |