Codeforces++
Codeforces extension pack
ما هو Codeforces++؟
Codeforces++ هو إضافة Chrome تم تطويرها بواسطة Leonardo Riether، والميزة الرئيسية لها هي "Codeforces extension pack".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Codeforces++
قم بتنزيل ملفات الامتداد Codeforces++ بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Ever wanted Codeforces to have handy shortcuts, auto-updating standings, problem tags that you can hide/show on demand, better site navigation, a dark theme, or all of the above? These and many more features are available in Codeforces++! This extension is open-source and hosted at GitHub https://github.com/LeoRiether/CodeforcesPP
معلومات أساسية عن التمديد
الاسم | Codeforces++ |
ID | ehbcfilpfnlahficlpimomapmbccieoi |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/codeforces++/ehbcfilpfnlahficlpimomapmbccieoi |
الوصف | Codeforces extension pack |
حجم الملف | 28.61 KB |
عدد التثبيتات | 3,692 |
النسخة الحالية | 2.4.0 |
آخر تحديث | 2023-02-22 |
تاريخ النشر | 2020-05-20 |
تقييم | 4.82/5 مجموع تقييمات 17 |
المطور | Leonardo Riether |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/LeoRiether/CodeforcesPP |
عنوان صفحة المساعدة | https://github.com/LeoRiether/CodeforcesPP/issues/ |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Codeforces++", "description": "Codeforces extension pack", "version": "2.4.0", "manifest_version": 2, "permissions": [ "storage", "*:\/\/codeforces.com\/*", "http:\/\/fonts.googleapis.com\/*", "https:\/\/fonts.googleapis.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/codeforces.com\/*" ], "js": [ "browser-polyfill.min.js", "contentScript.js" ], "css": [ "common.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "*.js" ], "background": { "persistent": false, "scripts": [ "browser-polyfill.min.js", "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_title": "Codeforces++" }, "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" } } |