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.」です。
拡張機能のスクリーンショット
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.
拡張機能の基本情報
名前 | |
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 |
Eメール | [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" ] } |