RateMySunDevil

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

Cos'è RateMySunDevil?

RateMySunDevil è un'estensione di Chrome sviluppata da Matthew, e la sua funzione principale è "Pull ratings from ratemyprofessors.com and show directly in MyASU class search.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione RateMySunDevil

Scarica i file di estensione RateMySunDevil in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome RateMySunDevil RateMySunDevil
ID epdifhgkiofeeogajceffcgiipcmdjgh
URL Ufficiale https://chromewebstore.google.com/detail/ratemysundevil/epdifhgkiofeeogajceffcgiipcmdjgh
Descrizione Pull ratings from ratemyprofessors.com and show directly in MyASU class search.
Dimensione del File 155 KB
Conteggio Installazioni 106
Versione Corrente 0.6
Ultimo Aggiornamento 2015-11-02
Data di Pubblicazione 2015-11-02
Valutazione 4.75/5 Totale 4 Valutazioni
Sviluppatore Matthew
Tipo di Pagamento free
Lingue Supportate 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
    }
}