RateMyGWU

Displays Rate My Professors information directly on the GW schedule of classes

什么是RateMyGWU?

RateMyGWU是由Jamie Scott开发的Chrome扩展程序,该扩展的主要功能是“Displays Rate My Professors information directly on the GW schedule of classes”。

扩展截图

screenshot

下载RateMyGWU扩展crx文件

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

扩展使用说明

                        Makes the lives of GW students easier by displaying Rate My Professor data directly on the GW schedule of classes.
Simply hover over a professors name to see information such as their overall rating and their level of difficulty!
You may also click on the professors name to be linked directly to their Rate My Professor page.                    

扩展基本信息

名称 RateMyGWU RateMyGWU
ID cpbecdacgjgpnpehjgkhddiancbonija
官方URL https://chromewebstore.google.com/detail/ratemygwu/cpbecdacgjgpnpehjgkhddiancbonija
简介 Displays Rate My Professors information directly on the GW schedule of classes
文件大小 408 KB
安装次数 85
当前版本 1.0
更新时间 2020-08-17
上架时间 2020-08-17
评分 5.00/5 共2次评分
开发者 Jamie Scott
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/JamieScottC/RateMyGWU
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "RateMyGWU",
    "version": "1.0",
    "description": "Displays Rate My Professors information directly on the GW schedule of classes",
    "permissions": [
        "*:\/\/www.ratemyprofessors.com\/*",
        "http:\/\/fonts.googleapis.com\/",
        "https:\/\/fonts.googleapis.com\/"
    ],
    "web_accessible_resources": [
        "css\/rate.css",
        "fonts\/Manrope\/Manrope-VariableFont_wght.ttf"
    ],
    "background": {
        "scripts": [
            "\/js\/jquery-3.5.1.min.js",
            "\/js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.gwu.edu\/mod\/pws\/courses.cfm?campId=*&termId=*&subjId=*"
            ],
            "js": [
                "\/js\/jquery-3.5.1.min.js",
                "\/js\/injectRate.js"
            ],
            "css": [
                "\/css\/rate.css"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/RateMyGWULogo16.png",
            "32": "images\/RateMyGWULogo32.png",
            "48": "images\/RateMyGWULogo48.png",
            "128": "images\/RateMyGWULogo128.png"
        }
    },
    "icons": {
        "16": "images\/RateMyGWULogo16.png",
        "32": "images\/RateMyGWULogo32.png",
        "48": "images\/RateMyGWULogo48.png",
        "128": "images\/RateMyGWULogo128.png"
    },
    "manifest_version": 2
}