Unread for GMail
Mark unread GMail emails with a color
什么是Unread for GMail?
Unread for GMail是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Mark unread GMail emails with a color”。
扩展截图
下载Unread for GMail扩展crx文件
下载Unread for GMail扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Mark unread GMail emails with a configurable color
扩展基本信息
名称 | Unread for GMail |
ID | plomegjhejbkljiijcbillglidciflfl |
官方URL | https://chromewebstore.google.com/detail/unread-for-gmail/plomegjhejbkljiijcbillglidciflfl |
简介 | Mark unread GMail emails with a color |
文件大小 | 259 KB |
安装次数 | 302 |
当前版本 | 1.0.0 |
更新时间 | 2017-08-29 |
上架时间 | 2017-08-29 |
评分 | 5.00/5 共2次评分 |
开发者 | Unknown |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Unread for GMail", "version": "1.0.0", "manifest_version": 2, "description": "Mark unread GMail emails with a color", "homepage_url": "https:\/\/www.linkedin.com\/in\/sachinmrao", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "page": "src\/bg\/background.html", "persistent": true }, "options_ui": { "page": "src\/options_custom\/index.html", "chrome_style": true }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |