MadGPA

Automatically loads the previous semester's average GPA in course enroll.

MadGPAとは何ですか?

MadGPAはPrathによって開発されたChromeの拡張機能で、その主な機能は「Automatically loads the previous semester's average GPA in course enroll.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

MadGPA拡張機能のCRXファイルをダウンロード

MadGPA拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Helps you select the best & easiest courses to enroll in at the University of Wisconsin - Madison. Have you ever tried to find the easiest course offering of a certain degree requirement? This extension solves that problem! By overlaying previous semesters average GPA in course enroll, this extension removes the pain of finding a course and then checking it against a grade distribution site.                    

拡張機能の基本情報

名前 MadGPA MadGPA
ID ngglfcpeciojeakbdenajcljcinejjpa
公式URL https://chromewebstore.google.com/detail/madgpa/ngglfcpeciojeakbdenajcljcinejjpa
説明 Automatically loads the previous semester's average GPA in course enroll.
ファイルサイズ 33.26 KB
インストール数 285
現在のバージョン 3.00
最終更新日 2023-02-03
公開日 2023-01-31
評価 5.00/5 合計 7 レビュー
開発者 Prath
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://pite.vercel.app/#projects
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MadGPA",
    "description": "Automatically loads the previous semester's average GPA in course enroll.",
    "version": "3.00",
    "icons": {
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/github.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.enroll.wisc.edu\/*",
                "https:\/\/enroll.wisc.edu\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ]
}