Technion Moodle Connector
A simple Firefox addon to automate the login process to the Technion's Moodle website
What is Technion Moodle Connector?
Technion Moodle Connector is a Chrome extension developed by Unknown, and its main feature is "A simple Firefox addon to automate the login process to the Technion's Moodle website".
Extension Screenshots
Download Technion Moodle Connector Extension CRX File
Download Technion Moodle Connector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
A simple Chrome and Firefox addon to automate the login process to the Technion's Moodle website
Extension Basic Information
Name | Technion Moodle Connector |
ID | cfgmacalelmffegnfkdofhfmjpbmekfp |
Official URL | https://chromewebstore.google.com/detail/technion-moodle-connector/cfgmacalelmffegnfkdofhfmjpbmekfp |
Description | A simple Firefox addon to automate the login process to the Technion's Moodle website |
File Size | 174 KB |
Installation Count | 502 |
Current Version | 1.2.2 |
Last Updated | 2015-12-20 |
Publish Date | 2015-12-20 |
Rating | 4.33/5 Total 6 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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\/*" ] } |