Rate My ASU Professors
Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page.
什麼是Rate My ASU Professors?
Rate My ASU Professors是由Huan Doan開發的Chrome擴展程式,該擴展的主要功能是“Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page.”。
擴展截圖
下載Rate My ASU Professors擴展crx文件
下載Rate My ASU Professors擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Are you spending a lot of time switching back and forth between ASU Class Search and RateMyProfessors.com? This extension will display the Professor's ratings directly on the ASU Class Search Website. Source code also available at https://github.com/dnhuan/RateMyASUProfessors Feel free to fork the repository or open a pull request
擴展基本資訊
名稱 | Rate My ASU Professors |
ID | fjaecienfknhgnhipoobjjjlflbkadem |
官方網址 | https://chromewebstore.google.com/detail/rate-my-asu-professors/fjaecienfknhgnhipoobjjjlflbkadem |
簡介 | Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page. |
檔案大小 | 84.39 KB |
安裝次數 | 1,459 |
目前版本 | 2.2.0 |
更新時間 | 2023-11-03 |
上架時間 | 2022-12-22 |
評分 | 5.00/5 共 8 次評分 |
開發者 | Huan Doan |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/dnhuan/RateMyASUProfessors |
說明頁面URL | https://docs.google.com/forms/d/e/1FAIpQLSdfy-vyEc3lds8H6jYRtn50raGl24Kbo-pUGroU61WzXd5zMw/viewform |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Rate My ASU Professors", "version": "2.2.0", "description": "Rate My Professors Plugin for ASU Class Search. Allowing you to directly view professor ratings on the ASU Class Search page.", "author": "[email protected]", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/catalog.apps.asu.edu\/*" ], "css": [ "content\/styles.css" ] }, { "matches": [ "https:\/\/*.asu.edu\/catalog\/classes*" ], "js": [ "content\/jquery-3.5.1.min.js", "content\/string-similarity.min.js", "content\/content.js" ] } ], "permissions": [ "activeTab", "background" ], "host_permissions": [ "https:\/\/*.asu.edu\/*", "https:\/\/www.ratemyprofessors.com\/*" ], "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 3 } |