Gmail Classic Theme
An extension for reverting Gmail to the Classic Theme
Gmail Classic Theme란 무엇입니까?
Gmail Classic Theme은(는) Andrew Powell @shellscape에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension for reverting Gmail to the Classic Theme"입니다.
확장 프로그램 스크린샷
Gmail Classic Theme 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
What Google giveth, Google taketh away. Google has recently forced a UI update upon the users of Gmail. Unfortunately, not everyone thinks it's an improvement. Installing this extension will revert the UI of Gmail to the previous "Classic" theme. The theme is based on the actual CSS from the previous UI and makes no additions or subjective changes. This extension is open source. You can review or contribute to the code for this extension here: https://github.com/shellscape/gmail-classic. Release info and change-log can be found here: https://github.com/shellscape/gmail-classic/releases.
확장 프로그램 기본 정보
이름 | |
ID | cokholnilkppcchlfepienmlbafkjplj |
공식 URL | https://chrome.google.com/webstore/detail/gmail-classic-theme/cokholnilkppcchlfepienmlbafkjplj |
설명 | An extension for reverting Gmail to the Classic Theme |
파일 크기 | 17.38 KB |
설치 횟수 | 994 |
현재 버전 | 0.1.1 |
최근 업데이트 | 2018-11-19 |
출시 날짜 | 2018-11-19 |
평점 | 4.00/5 총 7 개의 평점 |
개발자 | Andrew Powell @shellscape |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/shellscape/gmail-classic |
도움말 페이지 URL | https://github.com/shellscape/gmail-classic |
지원되는 언어 | en |
manifest.json | |
{ "name": "Gmail Classic Theme", "short_name": "Gmail Classic Theme", "version": "0.1.1", "description": "An extension for reverting Gmail to the Classic Theme", "homepage_url": "http:\/\/github.com\/shellscape\/gmail-classic", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Andrew Powell (shellscape)", "manifest_version": 2, "browser_action": { "default_icon": { "19": "\/assets\/16.png", "38": "\/assets\/48.png" } }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "gmail.css" ] } ], "icons": { "16": "\/assets\/16.png", "32": "\/assets\/32.png", "48": "\/assets\/48.png", "64": "\/assets\/64.png", "128": "\/assets\/128.png" }, "permissions": [ "activeTab", "*:\/\/mail.google.com\/" ] } |