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文件
下载Neat Messages for Gmail扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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\/*" ] } ] } |