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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        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
عنوان صفحة المساعدة https://bizrobe.com/support
عنوان صفحة سياسة الخصوصية 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\/*"
    ]
}