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”。
擴展截圖
下載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 |
ID | kenjbppdmifncjgckmehppldmonjidnh |
官方網址 | 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 } |