Schoology Fixer

This extension alters the look and feel of the schoology webpage according to user preference

Что такое Schoology Fixer?

Schoology Fixer - это расширение Chrome, разработанное williamspencerdev, и его основная функция - "This extension alters the look and feel of the schoology webpage according to user preference".

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

screenshot

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

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

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

                        This Google Chrome extension effects the following changes on the Schoology webpage:

  It affixes the taskbar to the top of the window such that its position remains constant independent of scroll position.
  If hides all assignments marked as overdue by Schoology such that only upcoming assignments are visible.

Each of these may be enabled or disabled by clicking on the icon in the top bar.                    

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

Название Schoology Fixer Schoology Fixer
ID mecodadpcihocjelfkpnmnmmejfljkpf
Официальный URL https://chromewebstore.google.com/detail/schoology-fixer/mecodadpcihocjelfkpnmnmmejfljkpf
Описание This extension alters the look and feel of the schoology webpage according to user preference
Размер файла 34.63 KB
Количество установок 45
Текущая Версия 1.1.0
Последнее Обновление 2018-09-08
Дата публикации 2018-09-08
Разработчик williamspencerdev
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Schoology Fixer",
    "description": "This extension alters the look and feel of the schoology webpage according to user preference",
    "version": "1.1.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "SF Options"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.schoology.com\/*"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "script.js"
            ]
        }
    ]
}