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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A plugin for gmail to automatically create email with all recipients of an email."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gmail new email to all recipients by 010Pixel एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
            ]
        }
    ]
}