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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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