Birthday Reminder

Birthday Reminder for Your Friends and Family!

Birthday Reminderคืออะไร?

Birthday Reminder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Furkan Çakır และคุณลักษณะหลักของมันคือ "Birthday Reminder for Your Friends and Family!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Birthday Reminder

ดาวน์โหลดไฟล์ส่วนขยาย Birthday Reminder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        When the person's birthday arrives, the Chrome application will remind you of it and also send a reminder email.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Birthday Reminder Birthday Reminder
ID oimnpbjciphnebiblcjlckmjnmnnaoej
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/birthday-reminder/oimnpbjciphnebiblcjlckmjnmnnaoej
คำอธิบาย Birthday Reminder for Your Friends and Family!
ขนาดไฟล์ 646 KB
จำนวนการติดตั้ง 221
เวอร์ชันปัจจุบัน 0.1.3
อัปเดตครั้งล่าสุด 2023-11-23
วันที่เผยแพร่ 2023-03-31
คะแนน 5.00/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา Furkan Çakır
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://gizlilik-sozlemesi.furkancakr.online/gizlilik.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.3",
    "manifest_version": 3,
    "name": "Birthday Reminder",
    "description": "Birthday Reminder for Your Friends and Family!",
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "identity"
    ],
    "icons": {
        "48": "src\/images\/cake.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "oauth2": {
        "client_id": "YOUR_CLIENT_ID",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "celebration.js"
            ]
        }
    ]
}