RateMyTrojans

Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.

RateMyTrojans là gì?

RateMyTrojans là một tiện ích mở rộng Chrome được phát triển bởi Kyle Chua, và tính năng chính của nó là "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.".

Ả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 RateMyTrojans

Tải xuống các tệp mở rộng RateMyTrojans 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

                        View the source code: https://github.com/kylechua/rmpLinks-USC                    

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

Tên RateMyTrojans RateMyTrojans
ID kmhmknbhcdgedenadphgnpaelgabimmi
URL Chính Thức https://chromewebstore.google.com/detail/ratemytrojans/kmhmknbhcdgedenadphgnpaelgabimmi
Mô tả Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.
Kích Thước Tệp 435 KB
Số Lần Cài Đặt 192
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2018-08-08
Ngày Phát Hành 2018-07-09
Nhà Phát Triển Kyle Chua
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kylechua/rmpLinks-USC
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "RateMyTrojans",
    "description": "Adds hyperlinks to instructors' RateMyProfessor profiles on the University of Southern California course registration website.",
    "version": "1.0.2",
    "background": {
        "scripts": [
            "jquery-3.2.1.min.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/webreg.usc.edu\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "findProfs.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/*.png"
    ],
    "permissions": [
        "https:\/\/www.ratemyprofessors.com\/*"
    ]
}