Easy Mail: Word suggestions drafting emails
Get word auto suggestions while drafting emails in English or Spanish language
什么是Easy Mail: Word suggestions drafting emails?
Easy Mail: Word suggestions drafting emails是由Solan开发的Chrome扩展程序,该扩展的主要功能是“Get word auto suggestions while drafting emails in English or Spanish language”。
扩展截图
下载Easy Mail: Word suggestions drafting emails扩展crx文件
下载Easy Mail: Word suggestions drafting emails扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This chrome extension provides auto suggestions service while you draft emails. Languages supported are English (US), English (UK) and Spanish (ES-es). It works on major web mails like: * Gmail * Yahoo Mail * Outlook live and Office 365 mail. Its faster and lighter compare to other auto word suggestion services. Its a standalone service, it doesn't have any server or communicate to any server. It works offline too. Its intelligent enough to learn NEW words you use and suggests you back. For example, you can use it to remember phone number, invoice numbers or nouns etc which are difficult to spell. Data it remembers is stored on your browser only. To report any issue, write mail to [email protected] Thank you.
扩展基本信息
名称 | Easy Mail: Word suggestions drafting emails |
ID | gggpaoacibfcnnpokbmdohjfmaakoafa |
官方URL | https://chromewebstore.google.com/detail/easy-mail-word-suggestion/gggpaoacibfcnnpokbmdohjfmaakoafa |
简介 | Get word auto suggestions while drafting emails in English or Spanish language |
文件大小 | 576 KB |
安装次数 | 250 |
当前版本 | 0.0.10 |
更新时间 | 2020-01-09 |
上架时间 | 2020-01-08 |
评分 | 4.50/5 共6次评分 |
开发者 | Solan |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Easy Mail: Word suggestions drafting emails", "description": "Get word auto suggestions while drafting emails in English or Spanish language", "version": "0.0.10", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "browser_action": { "default_icon": { "19": "img\/icon19.png", "38": "img\/icon38.png" }, "default_title": "Easy Write: Type in and get auto suggestions", "default_popup": "src\/popup.html" }, "background": { "scripts": [ "src\/jquery-2.1.1.min.js", "src\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/outlook.live.com\/*", "https:\/\/outlook.office365.com\/*", "https:\/\/outlook.office.com\/mail\/*", "https:\/\/*.mail.yahoo.com\/*" ], "js": [ "src\/jquery-2.1.1.min.js", "src\/content.js", "src\/caret.js", "src\/b.js" ], "all_frames": true, "match_about_blank": true } ], "permissions": [ "storage" ], "web_accessible_resources": [ "en-UK.json", "en-US.json", "es-ES.json" ] } |