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 là gì?
Gmail new email to all recipients by 010Pixel là một tiện ích mở rộng Chrome được phát triển bởi 010pixel, và tính năng chính của nó là "A plugin for gmail to automatically create email with all recipients of an email.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Gmail new email to all recipients by 010Pixel
Tải xuống các tệp mở rộng Gmail new email to all recipients by 010Pixel 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Gmail new email to all recipients by 010Pixel |
ID | cbnkjkdjjhmbabdmnlppnpefolaakhba |
URL Chính Thức | https://chromewebstore.google.com/detail/gmail-new-email-to-all-re/cbnkjkdjjhmbabdmnlppnpefolaakhba |
Mô tả | A plugin for gmail to automatically create email with all recipients of an email. |
Kích Thước Tệp | 962 KB |
Số Lần Cài Đặt | 26 |
Phiên Bản Hiện Tại | 1.3.0 |
Cập Nhật Lần Cuối | 2023-01-06 |
Ngày Phát Hành | 2019-04-29 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | 010pixel |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://www.010pixel.com/ |
URL Trang Chính Sách Bảo Mật | https://privacy.010pixel.com/chrome |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |