Batch Reply for Gmail™

A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.

ما هو Batch Reply for Gmail™؟

Batch Reply for Gmail™ هو إضافة Chrome تم تطويرها بواسطة Elad Nava، والميزة الرئيسية لها هي "A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Batch Reply for Gmail™

قم بتنزيل ملفات الامتداد Batch Reply for Gmail™ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Simply go to https://mail.google.com/, select conversations you want to reply to, and click the "Reply" button at the top of the screen!

This extension is open-source.
https://github.com/eladnava/batch-reply-for-gmail

Gmail™ is a registered trademark of Google. This extension is unaffiliated with Google.                    

معلومات أساسية عن التمديد

الاسم Batch Reply for Gmail™ Batch Reply for Gmail™
ID hclnmjfbjpemfjgcakmbpjkbclchmaig
عنوان URL الرسمي https://chromewebstore.google.com/detail/batch-reply-for-gmail/hclnmjfbjpemfjgcakmbpjkbclchmaig
الوصف A chrome extension that makes it possible to reply to all selected conversations in Gmail™ at once.
حجم الملف 65.17 KB
عدد التثبيتات 10,329
النسخة الحالية 1.1
آخر تحديث 2014-08-19
تاريخ النشر 2014-08-19
تقييم 3.06/5 مجموع تقييمات 33
المطور Elad Nava
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Batch Reply for Gmail\u2122",
    "description": "A chrome extension that makes it possible to reply to all selected conversations in Gmail\u2122 at once.",
    "manifest_version": 2,
    "version": "1.1",
    "icons": {
        "16": "assets\/img\/icon16.png",
        "48": "assets\/img\/icon48.png",
        "128": "assets\/img\/icon128.png"
    },
    "permissions": [
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "assets\/js\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "assets\/js\/jquery.js",
                "assets\/js\/content.js"
            ]
        }
    ]
}