Skip to content

Chrome Extension for solving Nahad Exams

License

Notifications You must be signed in to change notification settings

Iman9mo/AutoNahad

 
 

Repository files navigation

AutoNahad

Chrome Lastest Tag

برای توضیحات فارسی به اینجا مراجعه کنید.

AutoNahad is a tool that helps you to solve maaref.ecnahad.ir exams. It will solve all problems automatically or if you choose manually, it will show you the correctness of your answer (with red or green color).

Unfortunetly, this code is not working anymore!

Sample

Sample gif

Install Chrome Extension

  • Clone project or Download the latest release from here
  • Unzip the file
  • Open Chrome and go to Extensions > Manage Extensions
  • Turn on Developer mode (top right corner)
  • Click Load unpacked and select the folder you just unzipped

Usage for Chrome Extension

  • Go to the exam page when the timer is running
  • Click on the AutoNahad extension
  • Click Solve button
  • Wait for the "Done!" alert, then finish the exam

Usage for other browsers (not recommended)

  • Go to the exam page when the timer is running

  • Open up the console tab in your browser

  • Copy & Paste the following code:

    const inject = document.createElement('script');
    inject.setAttribute('src','https://cdn.jsdelivr.net/gh/itsamirhn/AutoNahad@latest/inject.js');
    inject.onload = () => {
      const script = document.createElement('script');
      script.innerHTML = 'checkAll().then(() => { alert("Done!") })'
      document.body.appendChild(script);
      }
    document.head.appendChild(inject);
  • Wait for the "Done!" alert, then finish the exam

License

AutoNahad is licensed under the MIT license.

About

Chrome Extension for solving Nahad Exams

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 88.5%
  • HTML 11.5%