Codeforces Enhancer
Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link
ما هو Codeforces Enhancer؟
Codeforces Enhancer هو إضافة Chrome تم تطويرها بواسطة alexander.agulenko، والميزة الرئيسية لها هي "Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Codeforces Enhancer
قم بتنزيل ملفات الامتداد Codeforces Enhancer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Chrome extension that makes Codeforces better: supports multiple ratings graph, colorizes standings by used programming languages, adds "Hide/Show solved problems" link to Problemset page معلومات أساسية عن التمديد
| الاسم | |
| ID | ocmandagmgmkcplckgnfgaokpgkfenmp |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/codeforces-enhancer/ocmandagmgmkcplckgnfgaokpgkfenmp |
| الوصف | Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link |
| حجم الملف | 25.12 KB |
| عدد التثبيتات | 13,461 |
| النسخة الحالية | 1.2 |
| آخر تحديث | 2020-07-23 |
| تاريخ النشر | 2015-07-27 |
| تقييم | 4.40/5 مجموع تقييمات 35 |
| المطور | alexander.agulenko |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | http://codeforces.com/profile/agul |
| عنوان صفحة المساعدة | https://github.com/agul/cf-enhancer |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"content_scripts": [
{
"all_frames": false,
"js": [
"options.js",
"multiGraph.js"
],
"matches": [
"https:\/\/codeforces.com\/profile\/*",
"https:\/\/www.codeforces.com\/profile\/*"
],
"run_at": "document_idle"
},
{
"all_frames": false,
"js": [
"options.js",
"colorizeStandings.js"
],
"matches": [
"https:\/\/codeforces.com\/contest\/*\/standings*",
"https:\/\/www.codeforces.com\/contest\/*\/standings*",
"https:\/\/www.codeforces.com\/contest\/*\/room\/*",
"https:\/\/codeforces.com\/contest\/*\/room\/*",
"https:\/\/www.codeforces.com\/gym\/*\/standings*",
"https:\/\/codeforces.com\/gym\/*\/standings*",
"https:\/\/www.codeforces.com\/spectator\/*\/standings*",
"https:\/\/codeforces.com\/spectator\/*\/standings*"
],
"run_at": "document_idle"
},
{
"all_frames": false,
"js": [
"options.js",
"hideSolved.js"
],
"matches": [
"https:\/\/codeforces.com\/problemset",
"https:\/\/www.codeforces.com\/problemset",
"https:\/\/www.codeforces.com\/problemset\/page\/*",
"https:\/\/codeforces.com\/problemset\/page\/*"
],
"run_at": "document_idle"
}
],
"description": "Makes Codeforces better: multiple ratings graph, colorizes standings, adds \"Hide\/Show solved problems\" link",
"icons": {
"16": "logo_16x16.png",
"48": "logo_48x48.png",
"128": "logo_128x128.png"
},
"manifest_version": 2,
"name": "Codeforces Enhancer",
"short_name": "CF Enhancer",
"permissions": [
"storage"
],
"version": "1.2",
"options_page": "options_page.html",
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |