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."입니다.

확장 프로그램 스크린샷

screenshot

Rate My ASU Professors 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 Rate My ASU Professors
ID fjaecienfknhgnhipoobjjjlflbkadem
공식 URL 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
}