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
Eメール [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
}