Gmail new email to all recipients by 010Pixel
A plugin for gmail to automatically create email with all recipients of an email.
什么是Gmail new email to all recipients by 010Pixel?
Gmail new email to all recipients by 010Pixel是由010pixel开发的Chrome扩展程序,该扩展的主要功能是“A plugin for gmail to automatically create email with all recipients of an email.”。
扩展截图
下载Gmail new email to all recipients by 010Pixel扩展crx文件
下载Gmail new email to all recipients by 010Pixel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Easily create a new email with all the recipients from an existing email. No need to go through long processing of manually adding recipients or copy-pasting recipients. Support this extension: https://donorbox.org/to-sustain-building-google-chrome-extensions PRIVACY POLICY: http://privacy.010pixel.com/chrome/gmail-new-email-to-all-recipients-by-010pixel/ V-1.0.0: - Create new email and automatically add all recipients in "TO" field V-2.0.0: - Removed bugs V-3.0.0: - Added feature of choosing in which all the recipients go. You can choose "To" or "CC" field by clicking on the icon on browser toolbars.
扩展基本信息
名称 | Gmail new email to all recipients by 010Pixel |
ID | cbnkjkdjjhmbabdmnlppnpefolaakhba |
官方URL | https://chromewebstore.google.com/detail/gmail-new-email-to-all-re/cbnkjkdjjhmbabdmnlppnpefolaakhba |
简介 | A plugin for gmail to automatically create email with all recipients of an email. |
文件大小 | 962 KB |
安装次数 | 26 |
当前版本 | 1.3.0 |
更新时间 | 2023-01-06 |
上架时间 | 2019-04-29 |
评分 | 5.00/5 共3次评分 |
开发者 | 010pixel |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://www.010pixel.com/ |
隐私政策页面URL | https://privacy.010pixel.com/chrome |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail new email to all recipients by 010Pixel", "short_name": "Gmail-email-all-recipients", "description": "A plugin for gmail to automatically create email with all recipients of an email.", "version": "1.3.0", "author": "010 Pixel", "permissions": [ "https:\/\/mail.google.com\/", "https:\/\/inbox.google.com\/", "storage" ], "browser_action": { "default_icon": "images\/icon16.png" }, "icons": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "96": "images\/icon96.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/inbox.google.com\/*" ], "js": [ "inboxsdk.js", "myapp.js" ] } ] } |