Unread for GMail

Mark unread GMail emails with a color

Unread for GMail là gì?

Unread for GMail là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Mark unread GMail emails with a color".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Unread for GMail

Tải xuống các tệp mở rộng Unread for GMail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Mark unread GMail emails with a configurable color                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Unread for GMail Unread for GMail
ID plomegjhejbkljiijcbillglidciflfl
URL Chính Thức https://chromewebstore.google.com/detail/unread-for-gmail/plomegjhejbkljiijcbillglidciflfl
Mô tả Mark unread GMail emails with a color
Kích Thước Tệp 259 KB
Số Lần Cài Đặt 302
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2017-08-29
Ngày Phát Hành 2017-08-29
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}