Bizrobe Auto Follow up

Auto email Follow Up extension for Gmail

Bizrobe Auto Follow upคืออะไร?

Bizrobe Auto Follow up เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bizrobe.com และคุณลักษณะหลักของมันคือ "Auto email Follow Up extension for Gmail"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bizrobe Auto Follow up

ดาวน์โหลดไฟล์ส่วนขยาย Bizrobe Auto Follow up ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        Bizrobe is a chrome extension for following up automatically on the primary email sent through gmail. This is built to reduce the time to manually check on the sent items in email and then following up with a time interval. This helps increases productivity and can be used by Sales, HR, Marketing or any functions which uses gmail for communication. Bizrobe also provides a dashboard with analytics for the users to understand the followup patterns.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bizrobe Auto Follow up Bizrobe Auto Follow up
ID hepapmlnfobfldboadbapjgmgmbenehl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl
คำอธิบาย Auto email Follow Up extension for Gmail
ขนาดไฟล์ 159 KB
จำนวนการติดตั้ง 34
เวอร์ชันปัจจุบัน 1.2.3
อัปเดตครั้งล่าสุด 2023-10-21
วันที่เผยแพร่ 2023-09-20
คะแนน 5.00/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา https://bizrobe.com
อีเมล [email protected]
ประเภทการชำระเงิน in_app
เว็บไซต์ส่วนขยาย https://bizrobe.com
URL หน้าช่วยเหลือ https://bizrobe.com/support
URL หน้านโยบายความเป็นส่วนตัว https://bizrobe.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bizrobe Auto Follow up",
    "description": "Auto email Follow Up extension for Gmail",
    "icons": {
        "128": "Bizrobe_Logo.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "version": "1.2.3",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/*"
            ],
            "js": [
                "contentmang.js"
            ]
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/mail\/*"
            ],
            "js": [
                "jquery.min.js",
                "gmail.js",
                "contentmang.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "permissions": [
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/mail.google.com\/mail\/*"
    ]
}