Gmail new email to all recipients by 010Pixel
A plugin for gmail to automatically create email with all recipients of an email.
Cos'è Gmail new email to all recipients by 010Pixel?
Gmail new email to all recipients by 010Pixel è un'estensione di Chrome sviluppata da 010pixel, e la sua funzione principale è "A plugin for gmail to automatically create email with all recipients of an email.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Gmail new email to all recipients by 010Pixel
Scarica i file di estensione Gmail new email to all recipients by 010Pixel in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | cbnkjkdjjhmbabdmnlppnpefolaakhba |
| URL Ufficiale | https://chromewebstore.google.com/detail/gmail-new-email-to-all-re/cbnkjkdjjhmbabdmnlppnpefolaakhba |
| Descrizione | A plugin for gmail to automatically create email with all recipients of an email. |
| Dimensione del File | 962 KB |
| Conteggio Installazioni | 26 |
| Versione Corrente | 1.3.0 |
| Ultimo Aggiornamento | 2023-01-06 |
| Data di Pubblicazione | 2019-04-29 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | 010pixel |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://www.010pixel.com/ |
| URL della Pagina della Politica sulla Privacy | https://privacy.010pixel.com/chrome |
| Lingue Supportate | 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"
]
}
]
} | |