CF-Daily
Codeforces extension to display a daily question for each user in each rating group
什麼是CF-Daily?
CF-Daily是由Vansh Sukhija開發的Chrome擴展程式,該擴展的主要功能是“Codeforces extension to display a daily question for each user in each rating group”。
擴展截圖
下載CF-Daily擴展crx文件
下載CF-Daily擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Introducing "CF-Daily", an extension for daily coding challenges on Codeforces!
Keeping the beginners in mind and after some advice from the masters, we have selected many problems to give as a daily challenge both globally and rating-wise to keep the productivity high.
Clicking the icon of the extension has the whole history of the problems of the day on a particular day to easily navigate and re-attempt them.
Download CF-Daily today and move ahead with your daily coding journey on Codeforces! 擴展基本資訊
| 名稱 | |
| ID | nfkiibjkhejloohngppadofkbjfindia |
| 官方網址 | https://chromewebstore.google.com/detail/cf-daily/nfkiibjkhejloohngppadofkbjfindia |
| 簡介 | Codeforces extension to display a daily question for each user in each rating group |
| 檔案大小 | 24.21 KB |
| 安裝次數 | 377 |
| 目前版本 | 1.1.1 |
| 更新時間 | 2023-06-04 |
| 上架時間 | 2023-03-07 |
| 評分 | 5.00/5 共 3 次評分 |
| 開發者 | Vansh Sukhija |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "CF-Daily",
"version": "1.1.1",
"description": "Codeforces extension to display a daily question for each user in each rating group",
"content_scripts": [
{
"css": [
"src\/styles.css"
],
"js": [
"src\/script.js"
],
"matches": [
"https:\/\/codeforces.com\/problemset*"
]
}
],
"action": {
"default_icon": "icons\/icon16.png",
"default_popup": "src\/popup.html",
"default_title": "CF-Daily"
},
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage"
]
} | |