Neat Messages for Gmail
Improves the readibility of plain text Gmail messages by putting them in a neat container.
Neat Messages for Gmail란 무엇입니까?
Neat Messages for Gmail은(는) Hristiyan Dodov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improves the readibility of plain text Gmail messages by putting them in a neat container."입니다.
확장 프로그램 스크린샷
Neat Messages for Gmail 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of the extremely long rows of text in Gmail? This extension will help! All plain text emails are put in a neat container where you can comfortably read them. In the meantime, HTML emails that are designed and have everything looking nice will be left unchanged. WHAT'S NEW: - Now works with the new Gmail style - Removed the notifications permission -------------------------- This extension will NOT modify the emails’ content! It will only change how you (and only you) see them. -------------------------- Customize the extension via the Options page!
확장 프로그램 기본 정보
이름 | Neat Messages for Gmail |
ID | lkpknmgfopkjcpbgkkcnoolijfggioba |
공식 URL | https://chromewebstore.google.com/detail/neat-messages-for-gmail/lkpknmgfopkjcpbgkkcnoolijfggioba |
설명 | Improves the readibility of plain text Gmail messages by putting them in a neat container. |
파일 크기 | 72.16 KB |
설치 횟수 | 724 |
현재 버전 | 2.0.2 |
최근 업데이트 | 2018-09-07 |
출시 날짜 | 2018-09-06 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | Hristiyan Dodov |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Neat Messages for Gmail", "version": "2.0.2", "author": "Hristiyan Dodov", "description": "Improves the readibility of plain text Gmail messages by putting them in a neat container.", "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "permissions": [ "storage" ], "browser_action": { "default_icon": "img\/icon-16.png", "default_popup": "popup\/index.html" }, "options_page": "options\/index.html", "content_scripts": [ { "run_at": "document_end", "css": [ "css\/style.css" ], "js": [ "js\/script.js" ], "matches": [ "http:\/\/mail.google.com\/*", "https:\/\/mail.google.com\/*" ] } ] } |