Follow up Fred

This is Follow up Fred extension.

Follow up Fredคืออะไร?

Follow up Fred เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://followupfred.com และคุณลักษณะหลักของมันคือ "This is Follow up Fred extension."

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

screenshot
screenshot

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

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

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

                        How many times do you need to follow up with people when you send an email because they simply do not see your email in their clutter of other emails? Followup Fred is the solution to that problem. Our automated approach follows up on your behalf so that the recipients are consistently reminded that you have sent them an email and you want a response.

Some of the core features of Followup Fred include:
- Automate sending follow up emails to people who have not yet replied to you
- Easy to use and understand dashboard
- Tracks whether the recipients respond to your emails
- Tracking email opens and link clicks within emails
- Scheduling emails for later send (Coming soon)
- Reminders to remind you of when you need to do specific tasks (Coming soon)                    

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

ชื่อ Follow up Fred Follow up Fred
ID nbdgngmdbhhnbnfdefclfldehdopdjbc
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/follow-up-fred/nbdgngmdbhhnbnfdefclfldehdopdjbc
คำอธิบาย This is Follow up Fred extension.
ขนาดไฟล์ 972 KB
จำนวนการติดตั้ง 71
เวอร์ชันปัจจุบัน 2020.6.7027
อัปเดตครั้งล่าสุด 2020-06-06
วันที่เผยแพร่ 2020-06-04
คะแนน 4.17/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา http://followupfred.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://followupfred.com
URL หน้านโยบายความเป็นส่วนตัว https://followupfred.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "description": "__MSG_extDesc__",
    "version": "2020.6.7027",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/inboxsdk.js",
                "lib\/uuid.min.js",
                "dist\/main.js"
            ],
            "css": [
                "dist\/main.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "lib\/hot-reload.js",
            "dist\/background.js"
        ]
    },
    "options_ui": {
        "page": "dist\/options.html",
        "chrome_style": true
    },
    "icons": {
        "16": "icons\/inbox_16.png",
        "48": "icons\/inbox_48.png",
        "128": "icons\/inbox_128.png"
    },
    "browser_action": {
        "default_icon": "icons\/inbox_128.png",
        "default_title": "__MSG_extName__",
        "default_popup": "dist\/popup.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "cookies",
        "gcm",
        "notifications",
        "*:\/\/mail.google.com\/*",
        "*:\/\/*.followupfred.com\/*",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.googleusercontent.com\/*"
    ],
    "web_accessible_resources": [
        "icons\/*.*",
        "lib\/*.*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';"
}