RateMyGWU

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

RateMyGWU là gì?

RateMyGWU là một tiện ích mở rộng Chrome được phát triển bởi Jamie Scott, và tính năng chính của nó là "Displays Rate My Professors information directly on the GW schedule of classes".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng RateMyGWU

Tải xuống các tệp mở rộng RateMyGWU dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên RateMyGWU RateMyGWU
ID cpbecdacgjgpnpehjgkhddiancbonija
URL Chính Thức https://chromewebstore.google.com/detail/ratemygwu/cpbecdacgjgpnpehjgkhddiancbonija
Mô tả Displays Rate My Professors information directly on the GW schedule of classes
Kích Thước Tệp 408 KB
Số Lần Cài Đặt 85
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2020-08-17
Ngày Phát Hành 2020-08-17
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Jamie Scott
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/JamieScottC/RateMyGWU
Ngôn Ngữ Được Hỗ Trợ 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
}