UofT Profs

This extension links 'Analyze your Professor' to the browser. Made for UofT undergraduate students.

Что такое UofT Profs?

UofT Profs - это расширение Chrome, разработанное https://uoftprofs.com, и его основная функция - "This extension links 'Analyze your Professor' to the browser. Made for UofT undergraduate students.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения UofT Profs

Скачайте файлы расширений UofT Profs в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension adds hyperlinks to instructor names on Acorn, such that people can directly access uoftprofs.com from Acorn.                    

Основная информация о расширении

Название UofT Profs UofT Profs
ID olojdnpfailkhfoimaddolpmeilcdong
Официальный URL https://chromewebstore.google.com/detail/uoft-profs/olojdnpfailkhfoimaddolpmeilcdong
Описание This extension links 'Analyze your Professor' to the browser. Made for UofT undergraduate students.
Размер файла 47.24 KB
Количество установок 39
Текущая Версия 1.3.1
Последнее Обновление 2018-06-29
Дата публикации 2018-06-28
Рейтинг 4.56/5 Всего 9 оценок
Разработчик https://uoftprofs.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/walden-shen/uoft-profs-crx
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "UofT Profs",
    "version": "1.3.1",
    "description": "This extension links 'Analyze your Professor' to the browser. Made for UofT undergraduate students.",
    "icons": {
        "128": "img\/icon128.png",
        "48": "img\/icon48.png",
        "16": "img\/icon16.png"
    },
    "browser_action": {
        "default_icon": "img\/icon16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/acorn.utoronto.ca\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "notifications",
        "tabs",
        "https:\/\/acorn.utoronto.ca\/*"
    ]
}