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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*" ] } |