RateMySunDevil

Pull ratings from ratemyprofessors.com and show directly in MyASU class search.

RateMySunDevil란 무엇입니까?

RateMySunDevil은(는) Matthew에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Pull ratings from ratemyprofessors.com and show directly in MyASU class search."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Pulls ratings from ratemyprofessors.com and show them in a panel at the top right when mousing over a professor in class search. If the panel does not update while mousing over, there are no reviews yet. Hide the panel by clicking the button. Click on the professors name in the panel to view their official ratemyprofessor page.

Clicking the extension button in your Chrome browser will open a popup to search directly for a professor by last name and will open that search on ratemyprofessor.com in a new tab.

For ASU students!                    

확장 프로그램 기본 정보

이름 RateMySunDevil RateMySunDevil
ID epdifhgkiofeeogajceffcgiipcmdjgh
공식 URL https://chromewebstore.google.com/detail/ratemysundevil/epdifhgkiofeeogajceffcgiipcmdjgh
설명 Pull ratings from ratemyprofessors.com and show directly in MyASU class search.
파일 크기 155 KB
설치 횟수 106
현재 버전 0.6
최근 업데이트 2015-11-02
출시 날짜 2015-11-02
평점 4.75/5 총 4 개의 평점
개발자 Matthew
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RateMySunDevil",
    "description": "Pull ratings from ratemyprofessors.com and show directly in MyASU class search.",
    "version": "0.6",
    "browser_action": {
        "default_icon": "img\/rmsdicon.png",
        "default_title": "RateMySunDevil!",
        "default_popup": "reviewPopup.html"
    },
    "icons": {
        "16": "img\/rmsdicon.png",
        "48": "img\/rmsdicon.png",
        "128": "img\/rmsdicon.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/",
        "http:\/\/www.ratemyprofessors.com\/*",
        "https:\/\/webapp4.asu.edu\/catalog*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.asu.edu\/catalog\/classlist*"
            ],
            "js": [
                "jquery\/jquery.js",
                "contentScript.js",
                "jquery\/jquery-ui.min.js"
            ],
            "css": [
                "jquery\/jquery-ui.min.css",
                "contentCss.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery\/jquery.js",
            "eventScript.js"
        ],
        "persistent": false
    }
}