Pronto Auto Login
An extension that automatically logs you into VOLSBB (VIT College Wifi)
Pronto Auto Login क्या है?
Pronto Auto Login Tanay Deshmukh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that automatically logs you into VOLSBB (VIT College Wifi)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pronto Auto Login एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
All you need to do is click on the icon, enter your details, then press 'Save'. Click on 'Login' to log in to VOLSBB. To change your username/password, simply type it again in the popup and click 'Save'. The extension will automatically try to log you when you start up chrome or when the pronto authentication page is open. This normal behavior! Just sit back, relax and let the app do the work for you. This app has been tested to work in VIT Vellore, but can theoretically work with any Pronto Authentication System. To see the source code and for more info, visit - https://github.com/cybergla/pronto-auto-login. This extension does NOT record your usernames or passwords. All your data is stored securely with your Google account. DISCLAIMER: This product is still in beta and you may notice some bugs. Please feel free to contact me about this - [email protected]
एक्सटेंशन की मूल जानकारी
नाम | Pronto Auto Login |
ID | khoooekfjeadpjimigdbbalnbdcbapbm |
आधिकारिक URL | https://chromewebstore.google.com/detail/pronto-auto-login/khoooekfjeadpjimigdbbalnbdcbapbm |
विवरण | An extension that automatically logs you into VOLSBB (VIT College Wifi) |
फ़ाइल का आकार | 37.24 KB |
स्थापना संख्या | 717 |
वर्तमान संस्करण | 0.2.6 |
अंतिम अपडेट | 2016-10-23 |
प्रकाशन तिथि | 2016-10-23 |
रेटिंग | 4.47/5 कुल 15 रेटिंग्स |
डेवलपर | Tanay Deshmukh |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/cybergla/pronto-auto-login |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pronto Auto Login", "version": "0.2.6", "description": "An extension that automatically logs you into VOLSBB (VIT College Wifi)", "browser_action": { "default_icon": "icon16.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/phc.prontonetworks.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "permissions": [ "webRequest", "tabs", "storage", "notifications", "http:\/\/phc.prontonetworks.com\/*" ] } |