Plugin for IITD Students
This extension will assist students of IITD in their daily life ;)
Plugin for IITD Studentsคืออะไร?
Plugin for IITD Students เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DragonManu และคุณลักษณะหลักของมันคือ "This extension will assist students of IITD in their daily life ;)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Plugin for IITD Students
ดาวน์โหลดไฟล์ส่วนขยาย Plugin for IITD Students ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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'" } |