NJIT Schedule Builder RMP

An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.

NJIT Schedule Builder RMPとは何ですか?

NJIT Schedule Builder RMPはvineethedevによって開発されたChromeの拡張機能で、その主な機能は「An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.」です。

拡張機能のスクリーンショット

screenshot

NJIT Schedule Builder RMP拡張機能のCRXファイルをダウンロード

NJIT Schedule Builder RMP拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This extension allows students to quickly view ratemyprofessor.com information on the NJIT Schedule Builder (https://uisapppr3.njit.edu/scbldr/). 

You can view the source code at https://github.com/Vineetsridhar/RMPExtension                    

拡張機能の基本情報

名前 NJIT Schedule Builder RMP NJIT Schedule Builder RMP
ID gbhlckmcjkpdhgkpbmkabcedbhjjpmbo
公式URL https://chromewebstore.google.com/detail/njit-schedule-builder-rmp/gbhlckmcjkpdhgkpbmkabcedbhjjpmbo
説明 An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.
ファイルサイズ 32.51 KB
インストール数 1,263
現在のバージョン 1.5
最終更新日 2022-12-23
公開日 2020-09-01
評価 5.00/5 合計 9 レビュー
開発者 vineethedev
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://uisapppr3.njit.edu/scbldr/
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NJIT Schedule Builder RMP",
    "version": "1.5",
    "description": "An open source extension which quickly displays ratemyprofessor.com information directly on the NJIT schedule builder website.",
    "icons": {
        "16": "Icons\/icon16.png",
        "32": "Icons\/icon32.png",
        "48": "Icons\/icon48.png",
        "64": "Icons\/icon64.png",
        "100": "Icons\/icon100.png",
        "128": "Icons\/icon128.png",
        "200": "Icons\/icon200.png"
    },
    "manifest_version": 2,
    "permissions": [
        "https:\/\/uisapppr3.njit.edu\/scbldr\/+"
    ],
    "browser_action": {
        "default_icon": "Icons\/icon32.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/uisapppr3.njit.edu\/scbldr\/"
            ],
            "run_at": "document_end"
        }
    ]
}