Birthday Manager

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

什么是Birthday Manager?

Birthday Manager是由https://kensplanet.com开发的Chrome扩展程序,该扩展的主要功能是“A Chrome Extension to automatically wish your Facebook friends on their birthdays”。

扩展截图

screenshot
screenshot

下载Birthday Manager扩展crx文件

下载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
}