Schoology Fixer

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

Co to jest Schoology Fixer?

Schoology Fixer to rozszerzenie Chrome opracowane przez williamspencerdev, a jego główną funkcją jest „This extension alters the look and feel of the schoology webpage according to user preference”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Schoology Fixer

Pobierz pliki rozszerzeń Schoology Fixer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Schoology Fixer Schoology Fixer
ID mecodadpcihocjelfkpnmnmmejfljkpf
Oficjalny URL https://chromewebstore.google.com/detail/schoology-fixer/mecodadpcihocjelfkpnmnmmejfljkpf
Opis This extension alters the look and feel of the schoology webpage according to user preference
Rozmiar pliku 34.63 KB
Liczba instalacji 45
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2018-09-08
Data Publikacji 2018-09-08
Deweloper williamspencerdev
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}