Technion Moodle Connector
A simple Firefox addon to automate the login process to the Technion's Moodle website
Was ist Technion Moodle Connector?
Technion Moodle Connector ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "A simple Firefox addon to automate the login process to the Technion's Moodle website".
Erweiterungsscreenshots
Technion Moodle Connector-Erweiterungs-CRX-Datei herunterladen
Laden Sie Technion Moodle Connector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A simple Chrome and Firefox addon to automate the login process to the Technion's Moodle website
Grundlegende Informationen zur Erweiterung
Name | Technion Moodle Connector |
ID | cfgmacalelmffegnfkdofhfmjpbmekfp |
Offizielle URL | https://chromewebstore.google.com/detail/technion-moodle-connector/cfgmacalelmffegnfkdofhfmjpbmekfp |
Beschreibung | A simple Firefox addon to automate the login process to the Technion's Moodle website |
Dateigröße | 174 KB |
Installationsanzahl | 502 |
Aktuelle Version | 1.2.2 |
Letztes Update | 2015-12-20 |
Veröffentlichungsdatum | 2015-12-20 |
Bewertung | 4.33/5 Insgesamt 6 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } |