RateMyTrojans

Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.

RateMyTrojans란 무엇입니까?

RateMyTrojans은(는) Kyle Chua에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website."입니다.

확장 프로그램 스크린샷

screenshot

RateMyTrojans 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        View the source code: https://github.com/kylechua/rmpLinks-USC                    

확장 프로그램 기본 정보

이름 RateMyTrojans RateMyTrojans
ID kmhmknbhcdgedenadphgnpaelgabimmi
공식 URL https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi
설명 Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
파일 크기 435 KB
설치 횟수 192
현재 버전 1.0.2
최근 업데이트 2018-08-08
출시 날짜 2018-07-09
개발자 Kyle Chua
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kylechua/rmpLinks-USC
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RateMyTrojans",
    "description": "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.",
    "version": "1.0.2",
    "background": {
        "scripts": [
            "jquery-3.2.1.min.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/webreg.usc.edu\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "findProfs.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*.png"
    ],
    "permissions": [
        "https:\/\/www.ratemyprofessors.com\/*"
    ]
}