Technion Moodle Connector
A simple Firefox addon to automate the login process to the Technion's Moodle website
ما هو Technion Moodle Connector؟
Technion Moodle Connector هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "A simple Firefox addon to automate the login process to the Technion's Moodle website".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Technion Moodle Connector
قم بتنزيل ملفات الامتداد Technion Moodle Connector بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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\/*" ] } |