Neps Academy Companion
This extension allow send test cases from Neps Academy to the VSCode extension CPH.
Neps Academy Companion क्या है?
Neps Academy Companion https://neps.academy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allow send test cases from Neps Academy to the VSCode extension CPH."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Neps Academy Companion एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |