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文件

下載Pronto Auto Login擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}