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 擴展基本資訊
| 名稱 | |
| ID | plomegjhejbkljiijcbillglidciflfl |
| 官方網址 | 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"
]
}
]
} | |