Technion Grades Calculator

Extension to easily calculate GPA and success rates given an estimated grade

Wat is Technion Grades Calculator?

Technion Grades Calculator is een Chrome-extensie ontwikkeld door daniel06715, en de belangrijkste functie is "Extension to easily calculate GPA and success rates given an estimated grade".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Technion Grades Calculator

Download Technion Grades Calculator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        סטודנטים בטכניון? רוצים לחשב בקלות כמה המל"ג הזה יכול להיות שווה לממוצע שלכם? כמה המועד ב' הזה עלול לעלות לשיעור ההצלחות שלכם?

התוסף מתקשר עם ה"תדפיס ציונים" שבמערכת ה"Students Services" (אפשר למצוא לינק בחלון הpopup של התוסף) ומאפשר לכם להזין ציון חלופי לכל אחד מהקורסים ולראות את הממוצע ואת שיעור ההצלחות של הסמסטר (או הכללי), משתנה בהתאם.
כמו כן יש אפשרות להזין קורסים נוספים באמצעות נק"ז וציון סופי ולשקלל גם אותם לממוצע הכללי.

**דיסקליימר: שיעור ההצלחות מחושב לפי עובר=55+, ולא מביא בחשבון קורסים עבורם הנתון הזה שונה.

שימו לב: ייתכנו תקלות בעת שימוש בתוסף עם Dark Mode                    

Basisinformatie over de Extensie

Naam Technion Grades Calculator Technion Grades Calculator
ID eodnhnpehppmhljcnidlacddeaajpjlc
Officiële URL https://chromewebstore.google.com/detail/technion-grades-calculato/eodnhnpehppmhljcnidlacddeaajpjlc
Beschrijving Extension to easily calculate GPA and success rates given an estimated grade
Bestandsgrootte 43.9 KB
Aantal Installaties 659
Huidige Versie 1.7
Laatst Bijgewerkt 2024-01-21
Publicatiedatum 2022-09-23
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar daniel06715
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}