Technion Moodle Connector

A simple Firefox addon to automate the login process to the Technion's Moodle website

Co to jest Technion Moodle Connector?

Technion Moodle Connector to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „A simple Firefox addon to automate the login process to the Technion's Moodle website”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Technion Moodle Connector

Pobierz pliki rozszerzeń Technion Moodle Connector 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

                        A simple Chrome and Firefox addon to automate the login process to the Technion's Moodle website                    

Podstawowe informacje o rozszerzeniu

Nazwa Technion Moodle Connector Technion Moodle Connector
ID cfgmacalelmffegnfkdofhfmjpbmekfp
Oficjalny URL https://chromewebstore.google.com/detail/technion-moodle-connector/cfgmacalelmffegnfkdofhfmjpbmekfp
Opis A simple Firefox addon to automate the login process to the Technion's Moodle website
Rozmiar pliku 174 KB
Liczba instalacji 502
Aktualna Wersja 1.2.2
Ostatnia Aktualizacja 2015-12-20
Data Publikacji 2015-12-20
Ocena 4.33/5 Łącznie 6 Oceny
Deweloper Unknown
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": "Technion Moodle Connector",
    "author": "Daniel Mittelman",
    "description": "A simple Firefox addon to automate the login process to the Technion's Moodle website",
    "version": "1.2.2",
    "icons": {
        "32": "res\/icon32.png",
        "48": "res\/icon48.png",
        "64": "res\/icon64.png",
        "128": "res\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "res\/icon32.png",
        "default_popup": "panel.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/moodle.technion.ac.il\/*",
                "https:\/\/moodle.technion.ac.il\/*"
            ],
            "js": [
                "res\/js\/init_message.js",
                "res\/js\/get-login-state.js",
                "res\/js\/connecting-overlay.js",
                "res\/js\/skip_file_pages.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "res\/*"
    ],
    "permissions": [
        "tabs",
        "*:\/\/moodle.technion.ac.il\/*"
    ]
}