Birthday Manager

A Chrome Extension to automatically wish your Facebook friends on their birthdays

Birthday Managerคืออะไร?

Birthday Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kensplanet.com และคุณลักษณะหลักของมันคือ "A Chrome Extension to automatically wish your Facebook friends on their birthdays"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Birthday Manager

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

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

                        "Birthday Manager" is a Google Chrome extension to wish your Facebook friends on their birthdays. Every day, on your Chrome browser, the tool opens the Facebook birthday page and populates the message boxes with random birthday messages.

NOTES
- This tool is not automatic and some manual intervention is still required to wish birthdays.
- It only runs on your Chrome browser and will not work if you are not logged into Facebook.
- Stability is not guaranteed. It might become unstable occasionally if Facebook changes page design. However, the status of the tool whether stable/unstable is clearly displayed on the main page.

DISCLAIMER: This tool is not affiliated with, maintained, authorized, endorsed or sponsored by Facebook or any of its affiliates.                    

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

ชื่อ Birthday Manager Birthday Manager
ID kenjbppdmifncjgckmehppldmonjidnh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/birthday-manager/kenjbppdmifncjgckmehppldmonjidnh
คำอธิบาย A Chrome Extension to automatically wish your Facebook friends on their birthdays
ขนาดไฟล์ 444 KB
จำนวนการติดตั้ง 404
เวอร์ชันปัจจุบัน 3.1.0
อัปเดตครั้งล่าสุด 2022-12-16
วันที่เผยแพร่ 2020-09-26
คะแนน 4.75/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา https://kensplanet.com
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://kensplanet.com/birthday-well-wisher/privacy-policy.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Birthday Manager",
    "description": "A Chrome Extension to automatically wish your Facebook friends on their birthdays",
    "version": "3.1.0",
    "browser_action": {
        "default_icon": "logo.png"
    },
    "permissions": [
        "https:\/\/*.facebook.com\/*",
        "storage",
        "identity",
        "identity.email"
    ],
    "background": {
        "scripts": [
            "background_script.js"
        ]
    },
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.facebook.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "index.html",
        "content_script.js",
        "content_script.js.map",
        "background_script.js.map"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}