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文件

下载RateMySunDevil扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
    }
}