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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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\/*" ] } |