UofT Course Info

Adds informative tooltips to University of Toronto courses mentioned across the web

Τι είναι το UofT Course Info;

Το UofT Course Info είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://uoft.dev, και η κύρια λειτουργία του είναι "Adds informative tooltips to University of Toronto courses mentioned across the web".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης UofT Course Info

Λήψη αρχείων επέκτασης UofT Course Info σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Adds tooltips to University of Toronto (U of T) courses mentioned on any webpage and adds course info cards to Google Search. Tooltips and cards contain course information such as prerequisites, exclusions, breadths etc. 

Data provided by a U of T -student-made Nikel API (see nikel.ml) 

WARNING: For quick reference only, please verify information with official U of T sources before making final course decisions. The developer of this extension is not responsible for any wrong information displayed in the tooltips. 

This extension is not affiliated with the University of Toronto

UofT Course Info on Github: https://github.com/MuradAkh/UofTCourseInfoChrome

-------



Disclaimer:
This extension uses Google Analytics to collect extension usage statistics to help improve user experience. If you want to opt-out of Google Analytics tracking, please visit http://tools.google.com/dlpage/gaoptout or you can set up a filter in Adblock Plus or similar ad blocker tools like AdBlock, uBlock or Adblock Pro.


Murad Akhundov 2017-2019. This extension is free and open source software.
Published by https://uoft.dev                    

Βασικές Πληροφορίες Επέκτασης

Όνομα UofT Course Info UofT Course Info
ID jcbiiafabmhjeiepopiiajnkjhcdieme
Επίσημο URL https://chromewebstore.google.com/detail/uoft-course-info/jcbiiafabmhjeiepopiiajnkjhcdieme
Περιγραφή Adds informative tooltips to University of Toronto courses mentioned across the web
Μέγεθος Αρχείου 189 KB
Αριθμός Εγκαταστάσεων 425
Τρέχουσα Έκδοση 4.6.0
Τελευταία Ενημέρωση 2020-07-09
Ημερομηνία Δημοσίευσης 2019-06-02
Αξιολόγηση 4.70/5 Συνολικά 20 Αξιολογήσεις
Προγραμματιστής https://uoft.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://uoft.dev
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "background": {
        "scripts": [
            "src\/contentscripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "images\/Acorn_128.png",
            "48": "images\/Acorn_48.png",
            "16": "images\/Acorn_16.png"
        },
        "default_title": "UofT Course Info",
        "default_popup": "src\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "css": [
                "dependencies\/tippy\/light.css"
            ],
            "js": [
                "dependencies\/jquery\/jquery.min.js",
                "dependencies\/tippy\/tippy.all.min.js",
                "src\/contentscripts\/util.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "js": [
                "src\/contentscripts\/textbookLinker.js"
            ],
            "matches": [
                "http:\/\/courseinfo.murad-akh.ca\/textbooks\/*"
            ]
        }
    ],
    "description": "Adds informative tooltips to University of Toronto courses mentioned across the web",
    "icons": {
        "128": "images\/Acorn_128.png",
        "48": "images\/Acorn_48.png",
        "16": "images\/Acorn_16.png"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4DfgytR+GzrCMqHW946oGojHg73K75sH2FUYEinr+Fn7VQkDPGZTOwc8uYzXBBamwv6x4XV1eoS17CkCS38S97bhyR0mPJ72On9HkOL1gb8RXKShwOdriDNh\/AM\/wLK4AEGYYRwutZBZBg3zOYl4dHpPS9Br+6iAs86J7t8Eqkvk1FMtpGrxEdPKca\/oqo7+oIdIixIaq67Zn0\/A09DcyJkQ+BXmtVeQWtDihTE7+5jpeTA5UHK4CDIqJ\/IDupqcSWBUA0OK9XvpwRcOkrQvuZiOq0jiLjc3GdtbZYOX81+kYo7oLifXRTH1PATH9GV4Qh0qH9IzTPEevdIcJAAUpQIDAQAB",
    "manifest_version": 2,
    "name": "UofT Course Info",
    "permissions": [
        "activeTab",
        "*:\/\/*\/*",
        "tabs",
        "storage",
        "notifications"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "4.6.0",
    "options_page": "src\/settings\/settings.html",
    "web_accessible_resources": [
        "dependencies\/tipped\/tipped.css",
        "data\/directory.json",
        "src\/settings\/settings.html",
        "src\/about\/index.html"
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'; style-src 'self' 'unsafe-inline' https:\/\/maxcdn.bootstrapcdn.com"
}