RateMySunDevil

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

Wat is RateMySunDevil?

RateMySunDevil is een Chrome-extensie ontwikkeld door Matthew, en de belangrijkste functie is "Pull ratings from ratemyprofessors.com and show directly in MyASU class search.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie RateMySunDevil

Download RateMySunDevil-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam RateMySunDevil RateMySunDevil
ID epdifhgkiofeeogajceffcgiipcmdjgh
Officiële URL https://chromewebstore.google.com/detail/ratemysundevil/epdifhgkiofeeogajceffcgiipcmdjgh
Beschrijving Pull ratings from ratemyprofessors.com and show directly in MyASU class search.
Bestandsgrootte 155 KB
Aantal Installaties 106
Huidige Versie 0.6
Laatst Bijgewerkt 2015-11-02
Publicatiedatum 2015-11-02
Beoordeling 4.75/5 Totaal 4 Beoordelingen
Ontwikkelaar Matthew
Betalingswijze free
Ondersteunde Talen 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
    }
}