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?

UMD Schedule of Classes Professor Rating是由a.mccourt60開發的Chrome擴展程式,該擴展的主要功能是“This extension will add professor ratings to each section in the UMD Schedule of Classes.”。

擴展截圖

screenshot
screenshot

下載UMD Schedule of Classes Professor Rating擴展crx文件

下載UMD Schedule of Classes Professor Rating擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 UMD Schedule of Classes Professor Rating UMD Schedule of Classes Professor Rating
ID jghbeiknpbpkicbeckkkdpalgdaeehmd
官方網址 https://chromewebstore.google.com/detail/umd-schedule-of-classes-p/jghbeiknpbpkicbeckkkdpalgdaeehmd
簡介 This extension will add professor ratings to each section in the UMD Schedule of Classes.
檔案大小 1.16 MB
安裝次數 41
目前版本 1.1
更新時間 2017-12-11
上架時間 2017-12-10
開發者 a.mccourt60
電子郵箱 [email protected]
付費類型 free
擴展官網 https://amccourt.github.io/
支援的語言 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"
            ]
        }
    ]
}