Plugin for IITD Students
This extension will assist students of IITD in their daily life ;)
Plugin for IITD Students란 무엇입니까?
Plugin for IITD Students은(는) DragonManu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will assist students of IITD in their daily life ;)"입니다.
확장 프로그램 스크린샷
Plugin for IITD Students 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Chrome extension for students of IITD to save some time and enjoy convenience. Enjoy blazing through those boring captcha and proxy passwords sites with this cool extension which does the hard work for you in the blink of an eye Sites currently supported: https://proxy22.iitd.ernet.in/cgi-bin/proxy.cgi https://moodle.iitd.ac.in https://webmail.iitd.ernet.in/roundcube/ https://oauth.iitd.ac.in/* This extension has the following features: - Saving of kerebos password across multiple sites. - Automatic login into these sites. - Solve the captcha (i really doubt if it should be called so) - Even Oauth captcha cracked!! - Give notifications of unread mail in webmail. - Give notifications of upcoming deadlines on moodle. Please contact [email protected] for any queries Find the source code at https://github.com/DRAGONMANU/chrome_IIT
확장 프로그램 기본 정보
이름 | Plugin for IITD Students |
ID | icilhkmmanohhkjkcdncahnpfdaiallg |
공식 URL | https://chromewebstore.google.com/detail/plugin-for-iitd-students/icilhkmmanohhkjkcdncahnpfdaiallg |
설명 | This extension will assist students of IITD in their daily life ;) |
파일 크기 | 1.45 MB |
설치 횟수 | 269 |
현재 버전 | 0.9 |
최근 업데이트 | 2017-09-05 |
출시 날짜 | 2017-09-05 |
평점 | 5.00/5 총 21 개의 평점 |
개발자 | DragonManu |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Plugin for IITD Students", "description": "This extension will assist students of IITD in their daily life ;)", "version": "0.9", "browser_action": { "default_icon": "ico.png", "default_title": "Click me to open", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "moodle.js" ], "matches": [ "https:\/\/moodle.iitd.ac.in\/login\/index.php" ] }, { "js": [ "webmail.js" ], "matches": [ "https:\/\/webmail.iitd.ernet.in\/roundcube\/*" ] }, { "js": [ "webmail.js" ], "matches": [ "https:\/\/webmail.iitd.ac.in\/roundcube\/*" ] }, { "js": [ "kerberos.js" ], "matches": [ "https:\/\/proxy22.iitd.ernet.in\/cgi-bin\/proxy.cgi*" ] }, { "js": [ "kerberos.js" ], "matches": [ "https:\/\/proxy62.iitd.ernet.in\/cgi-bin\/proxy.cgi*" ] }, { "js": [ "oauth.js" ], "matches": [ "https:\/\/oauth.iitd.ac.in\/*" ] } ], "background": { "page": "background.html" }, "icons": { "64": "iitd.png", "32": "ico.png", "16": "iitd.png", "128": "iitd.png" }, "permissions": [ "storage", "notifications", "background", "tabs" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |