Neps Academy Companion
This extension allow send test cases from Neps Academy to the VSCode extension CPH.
ما هو Neps Academy Companion؟
Neps Academy Companion هو إضافة Chrome تم تطويرها بواسطة https://neps.academy، والميزة الرئيسية لها هي "This extension allow send test cases from Neps Academy to the VSCode extension CPH.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Neps Academy Companion
قم بتنزيل ملفات الامتداد Neps Academy Companion بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This tool integrates Competitive Programming Helper (CPH) into Neps Academy. Clicking in the extension icon when visiting a programming exercise page at Neps will send all the information to the CPH extension. CPH will create a file for the exercise, so you can start coding in your favourite language. Additionally, all test cases will be imported as well. PS: If it does not work please refresh the page or restart your browser.
معلومات أساسية عن التمديد
الاسم | Neps Academy Companion |
ID | melmbgodgcahddlphjgjhefmnpcmfage |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/neps-academy-companion/melmbgodgcahddlphjgjhefmnpcmfage |
الوصف | This extension allow send test cases from Neps Academy to the VSCode extension CPH. |
حجم الملف | 20.68 KB |
عدد التثبيتات | 124 |
النسخة الحالية | 1.0 |
آخر تحديث | 2021-04-09 |
تاريخ النشر | 2021-04-07 |
المطور | https://neps.academy |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/ThiNepo/NepsAcademyCompanion |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Neps Academy Companion", "version": "1.0", "description": "This extension allow send test cases from Neps Academy to the VSCode extension CPH.", "permissions": [ "http:\/\/localhost\/" ], "content_scripts": [ { "matches": [ "*:\/\/neps.academy\/*" ], "js": [ "src\/content.js" ] } ], "background": { "scripts": [ "src\/background.js" ] }, "browser_action": { "default-icon": { "16": "icons\/16-defaultIcon.png", "32": "icons\/32-defaultIcon.png", "64": "icons\/64-defaultIcon.png", "128": "icons\/128-defaultIcon.png" } }, "icons": { "16": "icons\/16-defaultIcon.png", "32": "icons\/32-defaultIcon.png", "64": "icons\/64-defaultIcon.png", "128": "icons\/128-defaultIcon.png" } } |