Birthday Reminder

Birthday Reminder for Your Friends and Family!

什么是Birthday Reminder?

Birthday Reminder是由Furkan Çakır开发的Chrome扩展程序,该扩展的主要功能是“Birthday Reminder for Your Friends and Family!”。

扩展截图

screenshot

下载Birthday Reminder扩展crx文件

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