Daily-Challenge Reminder

Reminds user to complete the Leetcode Daily Challenge Question

什么是Daily-Challenge Reminder?

Daily-Challenge Reminder是由siddhantchawla开发的Chrome扩展程序,该扩展的主要功能是“Reminds user to complete the Leetcode Daily Challenge Question”。

扩展截图

screenshot
screenshot
screenshot

下载Daily-Challenge Reminder扩展crx文件

下载Daily-Challenge Reminder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension sends notifications periodically as reminders to the user to complete the Leetcode Daily Challenge Question and eventually helps them to be more consistent in their Problem Solving journey. 

It uses the saved cookies in the browser to fetch User Specific data from Leetcode APIs. 

Note: The user must be signed in to Leetcode for the extension to send notifications and work optimally.                    

扩展基本信息

名称 Daily-Challenge Reminder Daily-Challenge Reminder
ID fgpphonilhabeglmgpbabbnamimmbihf
官方URL https://chromewebstore.google.com/detail/daily-challenge-reminder/fgpphonilhabeglmgpbabbnamimmbihf
简介 Reminds user to complete the Leetcode Daily Challenge Question
文件大小 1.02 MB
安装次数 360
当前版本 1.0.1
更新时间 2022-02-15
上架时间 2022-02-07
评分 5.00/5 共9次评分
开发者 siddhantchawla
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Daily-Challenge Reminder",
    "description": "Reminds user to complete the Leetcode Daily Challenge Question",
    "version": "1.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "128": "logo5.png"
    },
    "permissions": [
        "cookies",
        "alarms",
        "activeTab",
        "notifications"
    ],
    "host_permissions": [
        "https:\/\/leetcode.com\/*"
    ],
    "action": {
        "default_popup": "popup.html"
    }
}