Gopher Grades - Past grades for UMN classes!

Now you can view directly from the course catalog!

Gopher Grades - Past grades for UMN classes!란 무엇입니까?

Gopher Grades - Past grades for UMN classes!은(는) https://umn.lol에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Now you can view directly from the course catalog!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Gopher Grades - Past grades for UMN classes! 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        It can be difficult to keep track of all of the different assignments and deadlines in college. The Gopher Grades website and extension can help with that by providing grade distribution data for each course on a per-instructor basis. This can be helpful in deciding which classes to take and which instructors to take them from. The data is based on GPA information from the past semesters.

This extension adds GopherGrades features directly into the UMN Schedule Builder tool, as well as adding a very convenient omnibox helper.                    

확장 프로그램 기본 정보

이름 Gopher Grades - Past grades for UMN classes! Gopher Grades - Past grades for UMN classes!
ID lhekbajaehiokcacoaeicphgdnmeaedp
공식 URL https://chromewebstore.google.com/detail/gopher-grades-past-grades/lhekbajaehiokcacoaeicphgdnmeaedp
설명 Now you can view directly from the course catalog!
파일 크기 4.38 MB
설치 횟수 3,033
현재 버전 2.0.1
최근 업데이트 2024-01-12
출시 날짜 2022-11-12
평점 5.00/5 총 16 개의 평점
개발자 https://umn.lol
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://umn.lol
도움말 페이지 URL https://umn.lol
개인정보 보호 정책 페이지 URL https://umn.lol/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gopher Grades - Past grades for UMN classes!",
    "description": "Now you can view directly from the course catalog!",
    "version": "2.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "omnibox": {
        "keyword": "gg"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/schedulebuilder.umn.edu\/*",
                "https:\/\/*.schedulebuilder.umn.edu\/*"
            ],
            "css": [
                "sidebar\/sidebar.css"
            ],
            "js": [
                "sidebar\/sidebar.js"
            ]
        },
        {
            "matches": [
                "https:\/\/schedulebuilder.umn.edu\/*",
                "https:\/\/*.schedulebuilder.umn.edu\/*"
            ],
            "css": [
                "plotter\/plotter.css"
            ],
            "js": [
                "plotter\/apiapi.js",
                "plotter\/util.js",
                "plotter\/main.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.umn.lol\/*",
                "https:\/\/umn.edu\/*"
            ],
            "css": [
                "umn.lol\/clearExtensionBanner.css"
            ]
        },
        {
            "matches": [
                "https:\/\/myu.umn.edu\/*",
                "https:\/\/*.myu.umn.edu\/*"
            ],
            "css": [
                "calendar\/calendar.css"
            ],
            "js": [
                "calendar\/utils\/date.js",
                "calendar\/utils\/icsFile.js",
                "calendar\/utils\/scraper.js",
                "calendar\/calendar.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.umn.lol\/*",
        "*:\/\/umn.lol\/*",
        "*:\/\/*.umn.edu\/*",
        "*:\/\/umn.edu\/*"
    ],
    "permissions": [
        "storage",
        "identity",
        "identity.email",
        "tabs"
    ],
    "options_page": "frontend\/popup\/popup.html",
    "action": {
        "default_title": "GopherGrades - View Options",
        "default_icon": {
            "32": "static\/icons\/icon-32.png",
            "72": "static\/icons\/icon-72.png",
            "128": "static\/icons\/icon-128.png",
            "512": "static\/icons\/icon-512.png"
        },
        "default_popup": "frontend\/popup\/popup.html"
    },
    "icons": {
        "32": "static\/icons\/icon-32.png",
        "72": "static\/icons\/icon-72.png",
        "128": "static\/icons\/icon-128.png",
        "512": "static\/icons\/icon-512.png"
    },
    "oauth2": {
        "client_id": "927875466012-l0lmgul3tb81tce30m0smhnvhqprf248.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email",
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile",
            "https:\/\/www.googleapis.com\/auth\/calendar",
            "https:\/\/www.googleapis.com\/auth\/calendar.events"
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "plotter\/walking.png",
                "static\/icons\/icon-128.png"
            ],
            "matches": [
                "https:\/\/schedulebuilder.umn.edu\/*"
            ]
        }
    ]
}