UofT Timetable Rating Embedder
A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.
UofT Timetable Rating Embedderとは何ですか?
UofT Timetable Rating EmbedderはTheLegendaryBananaによって開発されたChromeの拡張機能で、その主な機能は「A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.」です。
拡張機能のスクリーンショット
UofT Timetable Rating Embedder拡張機能のCRXファイルをダウンロード
UofT Timetable Rating Embedder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This chrome extension gets the ratings from www.ratemyprofessors.com for all the instructors that you are currently searching courses for on https://timetable.iit.artsci.utoronto.ca/ so you don't have to. You can now leisurely search for the best professors each class has to offer, if they have an existing review. To use simply click the acorn after you search for any course(s) on the ArtSci course finder.
拡張機能の基本情報
名前 | UofT Timetable Rating Embedder |
ID | ihcpidochhfbfibmdbogigfpnpaceeok |
公式URL | https://chromewebstore.google.com/detail/uoft-timetable-rating-emb/ihcpidochhfbfibmdbogigfpnpaceeok |
説明 | A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder. |
ファイルサイズ | 32.65 KB |
インストール数 | 55 |
現在のバージョン | 1.0.2 |
最終更新日 | 2017-07-10 |
公開日 | 2017-07-10 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | TheLegendaryBanana |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "UofT Timetable Rating Embedder", "version": "1.0.2", "description": "A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.", "icons": { "128": "icon128.png", "48": "icon48.png", "16": "icon16.png" }, "page_action": { "default_icon": "icon16.png", "default_title": "RMP Rating Embedder" }, "background": { "scripts": [ "eventPage.js", "tracker.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/timetable.iit.artsci.utoronto.ca\/" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "https:\/\/timetable.iit.artsci.utoronto.ca\/", "http:\/\/www.ratemyprofessors.com\/*" ], "web_accessible_resources": [ "cold-chili.png", "new-hot-chili.png" ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'" } |