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!
拡張機能の基本情報
名前 | CF-Daily |
ID | nfkiibjkhejloohngppadofkbjfindia |
公式URL | 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 |
Eメール | [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" ] } |