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
官方網址 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
電子郵箱 [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"
        }
    ]
}