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
公式URL 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
Eメール [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"
            ]
        }
    ]
}