Trimless for Google Mail™
Automatically shows trimmed content in Google Mail™.
什么是Trimless for Google Mail™?
Trimless for Google Mail™是由Alec Mev开发的Chrome扩展程序,该扩展的主要功能是“Automatically shows trimmed content in Google Mail™.”。
扩展截图
下载Trimless for Google Mail™扩展crx文件
下载Trimless for Google Mail™扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Expands trimmed parts, removes "Show trimmed content" buttons, sets trimmed text's color to light gray and indents it to the right. Restores clipped messages as well. You can switch it on and off by simply clicking the scissors icon in the address bar. The color and the size of indentation are fully customizable. Tinker with the source code on GitHub: http://bit.ly/YDmt1z Buy me some ice cream via PayPal: http://bit.ly/15maUAa
扩展基本信息
名称 | Trimless for Google Mail™ |
ID | niepjjjfafhadmfdminbckmciijcaagc |
官方URL | https://chromewebstore.google.com/detail/trimless-for-google-mail/niepjjjfafhadmfdminbckmciijcaagc |
简介 | Automatically shows trimmed content in Google Mail™. |
文件大小 | 88.72 KB |
安装次数 | 30,000 |
当前版本 | 1.11.1 |
更新时间 | 2019-05-29 |
上架时间 | 2019-05-29 |
评分 | 3.99/5 共93次评分 |
开发者 | Alec Mev |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/jeremejevs/trimless-gmail |
帮助页面URL | https://github.com/jeremejevs/trimless-gmail/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trimless for Google Mail\u2122", "version": "1.11.1", "description": "Automatically shows trimmed content in Google Mail\u2122.", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "page_action": { "default_title": "Trimless", "default_icon": { "19": "images\/icon-action-19.png", "38": "images\/icon-action-38.png" } }, "background": { "scripts": [ "vendor\/tinycolor-1.4.1.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "vendor\/jquery-3.3.1.min.js", "contentScript.js" ], "run_at": "document_start" } ], "options_ui": { "chrome_style": true, "page": "options.html" }, "permissions": [ "storage" ], "short_name": "Trimless Gmail", "applications": { "gecko": { "id": "[email protected]" } } } |