UMN Professor Ratings
Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder
UMN Professor Ratingsとは何ですか?
UMN Professor RatingsはUMNProfessorRatingsによって開発されたChromeの拡張機能で、その主な機能は「Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder」です。
UMN Professor Ratings拡張機能のCRXファイルをダウンロード
UMN Professor Ratings拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
UMN Professor Ratings adds RateMyProfessor ratings directly in UMN Schedule Builder. It allows you to choose a highly rated professor while choosing courses. Displays overall ratings and difficulty ratings from reviews by students. Professor Ratings, UMN, University of Minnesota
拡張機能の基本情報
名前 | |
ID | ndepfmgepgkncjjgkgcdhpgcopmnmpmn |
公式URL | https://chrome.google.com/webstore/detail/ndepfmgepgkncjjgkgcdhpgcopmnmpmn |
説明 | Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder |
ファイルサイズ | 12.12 KB |
インストール数 | 33 |
現在のバージョン | 2.0 |
最終更新日 | 2018-07-12 |
公開日 | 2018-07-12 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | UMNProfessorRatings |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UMN Professor Ratings", "author": "UMN Professor Ratings", "version": "2.0", "manifest_version": 2, "description": "Adds RateMyProfessor Ratings to University of Minnesota Schedule Builder", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/schedulebuilder.umn.edu\/*" ], "js": [ "main.js" ], "css": [ "styles.css" ] } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "webRequest", "https:\/\/schedulebuilder.umn.edu\/*", "https:\/\/search-a.akamaihd.net\/typeahead\/suggest\/*" ], "browser_action": { "default_title": "UMN Professor Ratings", "default_icon": "images\/icon48.png" } } |