Gmail Tagger

This extension helps you to use Gmail more efficiently by letting you tag your emails as you wish.

什么是Gmail Tagger?

Gmail Tagger是由Leonard Shi开发的Chrome扩展程序,该扩展的主要功能是“This extension helps you to use Gmail more efficiently by letting you tag your emails as you wish.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Gmail Tagger扩展crx文件

下载Gmail Tagger扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Description
    - This is a Google Chrome extension for Gmail.
    - With it you will be able to:
        1. Tag the emails in your Gmail inbox as you wish.
        2. Take a glance to know what you had planned to do to this email before.
        3. Your tags will be synced according to your Gmail account, anywhere you can see it.

Why build this extension?
    - Lets say you got 50 emails in your inbox in one page, though perhaps all emails have its own title:
        1. It is still a bit hard to just take a glance to find out the exact conversation you are looking for.
        2. Some email titles are not that explicit to you.
        3. You want to remark or add a quick tag(note) to one email, so in the future you can know what you had planned to this email by just taking a glance.
    - This extension is for solving the above problems, for you to use Gmail more efficiently.

Support and new features request
    - For any issue and new feature request, please submit your ticket at: https://github.com/lnshi/gmail-tagger/issues, I will get to that ASAP.                    

扩展基本信息

名称 Gmail Tagger Gmail Tagger
ID dlgkcajandmbfigoefogakpnnhajocjp
官方URL https://chrome.google.com/webstore/detail/gmail-tagger/dlgkcajandmbfigoefogakpnnhajocjp
简介 This extension helps you to use Gmail more efficiently by letting you tag your emails as you wish.
文件大小 50.06 KB
安装次数 68
当前版本 1.6
更新时间 2017-07-22
上架时间 2017-07-22
评分 3.25/5 共4次评分
开发者 Leonard Shi
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/lnshi/gmail-tagger
帮助页面URL https://github.com/lnshi/gmail-tagger/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "short_name": "__MSG_appName__",
    "version": "1.6",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "default_locale": "en",
    "homepage_url": "https:\/\/github.com\/leonard-sxy\/gmail-tag",
    "author": "[email protected]",
    "icons": {
        "128": "icons\/icon_128x128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon_32x32.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "css": [
                "css\/gmail.tagger.render.css"
            ],
            "js": [
                "lib\/jquery-2.2.3.min.js",
                "js\/gmail.tagger.render.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ]
}