MadGPA

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

MadGPA là gì?

MadGPA là một tiện ích mở rộng Chrome được phát triển bởi Prath, và tính năng chính của nó là "Automatically loads the previous semester's average GPA in course enroll.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng MadGPA

Tải xuống các tệp mở rộng MadGPA dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MadGPA MadGPA
ID ngglfcpeciojeakbdenajcljcinejjpa
URL Chính Thức https://chromewebstore.google.com/detail/madgpa/ngglfcpeciojeakbdenajcljcinejjpa
Mô tả Automatically loads the previous semester's average GPA in course enroll.
Kích Thước Tệp 33.26 KB
Số Lần Cài Đặt 285
Phiên Bản Hiện Tại 3.00
Cập Nhật Lần Cuối 2023-02-03
Ngày Phát Hành 2023-01-31
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Prath
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://pite.vercel.app/#projects
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}