Technion Moodle Connector
A simple Firefox addon to automate the login process to the Technion's Moodle website
Technion Moodle Connectorとは何ですか?
Technion Moodle ConnectorはUnknownによって開発されたChromeの拡張機能で、その主な機能は「A simple Firefox addon to automate the login process to the Technion's Moodle website」です。
拡張機能のスクリーンショット
Technion Moodle Connector拡張機能のCRXファイルをダウンロード
Technion Moodle Connector拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A simple Chrome and Firefox addon to automate the login process to the Technion's Moodle website
拡張機能の基本情報
名前 | Technion Moodle Connector |
ID | cfgmacalelmffegnfkdofhfmjpbmekfp |
公式URL | https://chromewebstore.google.com/detail/technion-moodle-connector/cfgmacalelmffegnfkdofhfmjpbmekfp |
説明 | A simple Firefox addon to automate the login process to the Technion's Moodle website |
ファイルサイズ | 174 KB |
インストール数 | 502 |
現在のバージョン | 1.2.2 |
最終更新日 | 2015-12-20 |
公開日 | 2015-12-20 |
評価 | 4.33/5 合計 6 レビュー |
開発者 | Unknown |
支払い方法 | free |
対応言語 | 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\/*" ] } |