Technion Grades Calculator
Extension to easily calculate GPA and success rates given an estimated grade
What is Technion Grades Calculator?
Technion Grades Calculator is a Chrome extension developed by daniel06715, and its main feature is "Extension to easily calculate GPA and success rates given an estimated grade".
Extension Screenshots
Download Technion Grades Calculator Extension CRX File
Download Technion Grades Calculator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
סטודנטים בטכניון? רוצים לחשב בקלות כמה המל"ג הזה יכול להיות שווה לממוצע שלכם? כמה המועד ב' הזה עלול לעלות לשיעור ההצלחות שלכם? התוסף מתקשר עם ה"תדפיס ציונים" שבמערכת ה"Students Services" (אפשר למצוא לינק בחלון הpopup של התוסף) ומאפשר לכם להזין ציון חלופי לכל אחד מהקורסים ולראות את הממוצע ואת שיעור ההצלחות של הסמסטר (או הכללי), משתנה בהתאם. כמו כן יש אפשרות להזין קורסים נוספים באמצעות נק"ז וציון סופי ולשקלל גם אותם לממוצע הכללי. **דיסקליימר: שיעור ההצלחות מחושב לפי עובר=55+, ולא מביא בחשבון קורסים עבורם הנתון הזה שונה. שימו לב: ייתכנו תקלות בעת שימוש בתוסף עם Dark Mode
Extension Basic Information
Name | Technion Grades Calculator |
ID | eodnhnpehppmhljcnidlacddeaajpjlc |
Official URL | https://chromewebstore.google.com/detail/technion-grades-calculato/eodnhnpehppmhljcnidlacddeaajpjlc |
Description | Extension to easily calculate GPA and success rates given an estimated grade |
File Size | 43.9 KB |
Installation Count | 659 |
Current Version | 1.7 |
Last Updated | 2024-01-21 |
Publish Date | 2022-09-23 |
Rating | 5.00/5 Total 2 Ratings |
Developer | daniel06715 |
[email protected] | |
Payment Type | free |
Supported Languages | iw |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Technion Grades Calculator", "description": "Extension to easily calculate GPA and success rates given an estimated grade", "version": "1.7", "icons": { "16": "logo16.png", "48": "logo48.png", "128": "logo128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "host_permissions": [ "https:\/\/students.technion.ac.il\/local\/tcurricular\/grades" ], "externally_connectable": { "ids": [ "*" ] }, "permissions": [ "tabs", "background", "activeTab", "scripting" ], "action": { "default_title": "TechnionGradesCalculator", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/students.technion.ac.il\/local\/tcurricular\/grades" ], "js": [ "contentScript.js" ], "css": [ "contentScript.css" ], "run_at": "document_end" } ], "manifest_version": 3 } |