Pronto Auto Login
An extension that automatically logs you into VOLSBB (VIT College Wifi)
Qu'est-ce que Pronto Auto Login ?
Pronto Auto Login est une extension Chrome développée par Tanay Deshmukh, et sa fonction principale est "An extension that automatically logs you into VOLSBB (VIT College Wifi)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pronto Auto Login
Téléchargez les fichiers d'extension Pronto Auto Login au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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]
Informations de Base sur l'Extension
Nom | Pronto Auto Login |
ID | khoooekfjeadpjimigdbbalnbdcbapbm |
URL Officiel | https://chromewebstore.google.com/detail/pronto-auto-login/khoooekfjeadpjimigdbbalnbdcbapbm |
Description | An extension that automatically logs you into VOLSBB (VIT College Wifi) |
Taille du Fichier | 37.24 KB |
Nombre d'Installations | 717 |
Version Actuelle | 0.2.6 |
Dernière Mise à Jour | 2016-10-23 |
Date de Publication | 2016-10-23 |
Évaluation | 4.47/5 Total 15 Évaluations |
Développeur | Tanay Deshmukh |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/cybergla/pronto-auto-login |
Langues Prises en Charge | 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\/*" ] } |