Technion Moodle Connector

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

Vad är Technion Moodle Connector?

Technion Moodle Connector är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "A simple Firefox addon to automate the login process to the Technion's Moodle website".

Tilläggsskärmbilder

screenshot

Ladda ner Technion Moodle Connector-förlängningens CRX-fil

Ladda ner Technion Moodle Connector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Technion Moodle Connector Technion Moodle Connector
ID cfgmacalelmffegnfkdofhfmjpbmekfp
Officiell webbadress https://chromewebstore.google.com/detail/technion-moodle-connector/cfgmacalelmffegnfkdofhfmjpbmekfp
Beskrivning A simple Firefox addon to automate the login process to the Technion's Moodle website
Filstorlek 174 KB
Antal Installationer 502
Aktuell Version 1.2.2
Senast Uppdaterad 2015-12-20
Publiceringsdatum 2015-12-20
Betyg 4.33/5 Totalt 6 Betyg
Utvecklare Unknown
Betalningssätt free
Stödda Språk 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\/*"
    ]
}