The Learning Task Calculator is a simple Chrome extension that allows users to calculate grades based on scores entered. It uses AngularJS for its functionality and provides a user-friendly interface to input scores and view the corresponding grade and percentage.
- Calculate the grade and percentage based on the score and total possible score.
- Display the grade as "Outstanding", "Excellent", "Very Good", etc., based on the calculated percentage.
- Clone the repository to your local machine.
- Navigate to the project directory and zip the contents.
- Open Chrome and go to
chrome://extensions/. - Enable Developer Mode by toggling the switch at the top right.
- Click on "Load unpacked" and select the zipped file of the project.
- The extension should now be installed and ready to use.
- Click on the extension icon in Chrome's toolbar.
- Enter the score and the total possible score in the popup.
- The application will automatically calculate and display the grade and percentage.
To modify the worded grades:
- Open
main.js - Locate and modify the [GRADES] to include your min, max and grade for each range.
Example of modifying grades:
const GRADES = [
{ min: 90, max: 100, grade: "Exceptional" }, // Changed from "Outstanding"
{ min: 80, max: 89, grade: "Superior" }, // Changed from "Excellent"
// Continue modifying other grades as needed
];manifest.jsonChrome extension metadatapopup.htmlThe main HTML file that includes the AngularJS application setup.main.jsContains the AngularJS controller logic for the application.angular.min.jsThe minified AngularJS library.
- AngularJS 1.3.14