Birthday Reminder

Birthday Reminder for Your Friends and Family!

Birthday Reminder क्या है?

Birthday Reminder Furkan Çakır द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Birthday Reminder for Your Friends and Family!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Birthday Reminder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}