Birthday Manager

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

Birthday Manager là gì?

Birthday Manager là một tiện ích mở rộng Chrome được phát triển bởi https://kensplanet.com, và tính năng chính của nó là "A Chrome Extension to automatically wish your Facebook friends on their birthdays".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Birthday Manager

Tải xuống các tệp mở rộng Birthday Manager dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Birthday Manager Birthday Manager
ID kenjbppdmifncjgckmehppldmonjidnh
URL Chính Thức https://chromewebstore.google.com/detail/birthday-manager/kenjbppdmifncjgckmehppldmonjidnh
Mô tả A Chrome Extension to automatically wish your Facebook friends on their birthdays
Kích Thước Tệp 444 KB
Số Lần Cài Đặt 404
Phiên Bản Hiện Tại 3.1.0
Cập Nhật Lần Cuối 2022-12-16
Ngày Phát Hành 2020-09-26
Đánh Giá 4.75/5 Tổng số 8 Đánh Giá
Nhà Phát Triển https://kensplanet.com
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://kensplanet.com/birthday-well-wisher/privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ 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
}