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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
"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 |
공식 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 } |