Pronto Auto Login

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

Pronto Auto Login란 무엇입니까?

Pronto Auto Login은(는) Tanay Deshmukh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that automatically logs you into VOLSBB (VIT College Wifi)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Pronto Auto Login 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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\/*"
    ]
}