Pronto Auto Login

An extension that automatically logs you into VOLSBB (VIT College Wifi)

Pronto Auto Login là gì?

Pronto Auto Login là một tiện ích mở rộng Chrome được phát triển bởi Tanay Deshmukh, và tính năng chính của nó là "An extension that automatically logs you into VOLSBB (VIT College Wifi)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pronto Auto Login

Tải xuống các tệp mở rộng Pronto Auto Login dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pronto Auto Login Pronto Auto Login
ID khoooekfjeadpjimigdbbalnbdcbapbm
URL Chính Thức https://chromewebstore.google.com/detail/pronto-auto-login/khoooekfjeadpjimigdbbalnbdcbapbm
Mô tả An extension that automatically logs you into VOLSBB (VIT College Wifi)
Kích Thước Tệp 37.24 KB
Số Lần Cài Đặt 717
Phiên Bản Hiện Tại 0.2.6
Cập Nhật Lần Cuối 2016-10-23
Ngày Phát Hành 2016-10-23
Đánh Giá 4.47/5 Tổng số 15 Đánh Giá
Nhà Phát Triển Tanay Deshmukh
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/cybergla/pronto-auto-login
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}