UMD Schedule of Classes Professor Rating

This extension will add professor ratings to each section in the UMD Schedule of Classes.

UMD Schedule of Classes Professor Rating là gì?

UMD Schedule of Classes Professor Rating là một tiện ích mở rộng Chrome được phát triển bởi a.mccourt60, và tính năng chính của nó là "This extension will add professor ratings to each section in the UMD Schedule of Classes.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng UMD Schedule of Classes Professor Rating

Tải xuống các tệp mở rộng UMD Schedule of Classes Professor Rating 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

                        This extension is a personal side project to practice JQuery and Javascript.  This extension adds ratings to the UMD Schedule of Classes on Testudo for each professor.  This will allow students to choose which sections they would like to register for without having to open new browser tabs to check professor ratings.                    

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

Tên UMD Schedule of Classes Professor Rating UMD Schedule of Classes Professor Rating
ID jghbeiknpbpkicbeckkkdpalgdaeehmd
URL Chính Thức https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd
Mô tả This extension will add professor ratings to each section in the UMD Schedule of Classes.
Kích Thước Tệp 1.16 MB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2017-12-11
Ngày Phát Hành 2017-12-10
Nhà Phát Triển a.mccourt60
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://amccourt.github.io/
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UMD Schedule of Classes Professor Rating",
    "description": "This extension will add professor ratings to each section in the UMD Schedule of Classes.",
    "version": "1.1",
    "browser_action": {
        "default_icon": "img\/testudo.png",
        "default_title": "UMD Professor Rating"
    },
    "permissions": [
        "activeTab",
        "https:\/\/search.mtvnservices.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/ntst.umd.edu\/soc\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "content-script.js"
            ]
        }
    ]
}