UofT Timetable Rating Embedder

A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.

什麼是UofT Timetable Rating Embedder?

UofT Timetable Rating Embedder是由TheLegendaryBanana開發的Chrome擴展程式,該擴展的主要功能是“A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.”。

擴展截圖

screenshot
screenshot

下載UofT Timetable Rating Embedder擴展crx文件

下載UofT Timetable Rating Embedder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This chrome extension gets the ratings from www.ratemyprofessors.com for all the instructors that you are currently searching courses for on https://timetable.iit.artsci.utoronto.ca/ so you don't have to.

You can now leisurely search for the best professors each class has to offer, if they have an existing review.

To use simply click the acorn after you search for any course(s) on the ArtSci course finder.                    

擴展基本資訊

名稱 UofT Timetable Rating Embedder UofT Timetable Rating Embedder
ID ihcpidochhfbfibmdbogigfpnpaceeok
官方網址 https://chromewebstore.google.com/detail/uoft-timetable-rating-emb/ihcpidochhfbfibmdbogigfpnpaceeok
簡介 A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.
檔案大小 32.65 KB
安裝次數 55
目前版本 1.0.2
更新時間 2017-07-10
上架時間 2017-07-10
評分 5.00/5 共 1 次評分
開發者 TheLegendaryBanana
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UofT Timetable Rating Embedder",
    "version": "1.0.2",
    "description": "A extension that inserts professor ratings from RateMyProf into the UofT artsci course finder.",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "page_action": {
        "default_icon": "icon16.png",
        "default_title": "RMP Rating Embedder"
    },
    "background": {
        "scripts": [
            "eventPage.js",
            "tracker.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/timetable.iit.artsci.utoronto.ca\/"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/timetable.iit.artsci.utoronto.ca\/",
        "http:\/\/www.ratemyprofessors.com\/*"
    ],
    "web_accessible_resources": [
        "cold-chili.png",
        "new-hot-chili.png"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}