Rate My Professor Extension
Displays the reviews for professors from Rate My Professors on the class registration page.
Rate My Professor Extensionとは何ですか?
Rate My Professor Extensionはtorresosによって開発されたChromeの拡張機能で、その主な機能は「Displays the reviews for professors from Rate My Professors on the class registration page.」です。
拡張機能のスクリーンショット
Rate My Professor Extension拡張機能のCRXファイルをダウンロード
Rate My Professor Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension seamlessly displays professor ratings from Rate My Professors under their names on the class registration pages for Oregon State University and University of British Columbia. We cut down the time you spend looking up professors by providing the average review rating directly on the class registration page along with a direct link to the professor's Rate My Professors page.
拡張機能の基本情報
名前 | Rate My Professor Extension |
ID | hgfogfefocfabnfjmjijfcjogeghmocn |
公式URL | https://chromewebstore.google.com/detail/rate-my-professor-extensi/hgfogfefocfabnfjmjijfcjogeghmocn |
説明 | Displays the reviews for professors from Rate My Professors on the class registration page. |
ファイルサイズ | 111 KB |
インストール数 | 315 |
現在のバージョン | 0.0.3 |
最終更新日 | 2023-08-13 |
公開日 | 2023-08-04 |
評価 | 4.67/5 合計 3 レビュー |
開発者 | torresos |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "__MSG_appShortName__", "description": "__MSG_appDescription__", "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/osu-rate-my-professor-ext\/hgfogfefocfabnfjmjijfcjogeghmocn", "version": "0.0.3", "version_name": "0.0.3", "manifest_version": 3, "default_locale": "en", "minimum_chrome_version": "88", "icons": { "128": "assets\/img\/128x128.png" }, "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/classes.oregonstate.edu\/*" ], "js": [ "OregonSU.js" ] }, { "matches": [ "https:\/\/courses.students.ubc.ca\/cs\/courseschedule*" ], "js": [ "UBC.js" ] } ], "host_permissions": [ "https:\/\/www.ratemyprofessors.com\/*" ], "action": { "default_icon": { "16": "assets\/img\/16x16.png", "24": "assets\/img\/24x24.png", "32": "assets\/img\/32x32.png" }, "default_title": "__MSG_appName__" } } |