Birthday Manager

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

What is Birthday Manager?

Birthday Manager is a Chrome extension developed by https://kensplanet.com, and its main feature is "A Chrome Extension to automatically wish your Facebook friends on their birthdays".

Extension Screenshots

screenshot
screenshot

Download Birthday Manager Extension CRX File

Download Birthday Manager extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        "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.                    

Extension Basic Information

Name Birthday Manager Birthday Manager
ID kenjbppdmifncjgckmehppldmonjidnh
Official URL https://chromewebstore.google.com/detail/birthday-manager/kenjbppdmifncjgckmehppldmonjidnh
Description A Chrome Extension to automatically wish your Facebook friends on their birthdays
File Size 444 KB
Installation Count 404
Current Version 3.1.0
Last Updated 2022-12-16
Publish Date 2020-09-26
Rating 4.75/5 Total 8 Ratings
Developer https://kensplanet.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://kensplanet.com/birthday-well-wisher/privacy-policy.html
Supported Languages 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
}