Berman Wifi Auto-Login

Automatically logs you into the MJBHA wifi.

Co to jest Berman Wifi Auto-Login?

Berman Wifi Auto-Login to rozszerzenie Chrome opracowane przez Joseph Feld, a jego główną funkcją jest „Automatically logs you into the MJBHA wifi.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Berman Wifi Auto-Login

Pobierz pliki rozszerzeń Berman Wifi Auto-Login w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension is only useful to students at MJBHA.

This extension automatically logs you into the wifi network at MJBHA. Just install it, click the extension icon, enter you're information, and you're good to go.

This only works for the Berman wifi network. It will not attempt to log you in anywhere else or do anything outside of the Berman wifi network.

==============FAQ==============
Q: Why does this need access to my browsing history?
A: It is part of the bundle of permissions that allows this extension to open new tabs to log you in. It is doing absolutely nothing with your browsing history.                    

Podstawowe informacje o rozszerzeniu

Nazwa Berman Wifi Auto-Login Berman Wifi Auto-Login
ID cdmahgjgpldlkicpbagjjajbnkjmcaoj
Oficjalny URL https://chromewebstore.google.com/detail/berman-wifi-auto-login/cdmahgjgpldlkicpbagjjajbnkjmcaoj
Opis Automatically logs you into the MJBHA wifi.
Rozmiar pliku 34.37 KB
Liczba instalacji 39
Aktualna Wersja 613.18
Ostatnia Aktualizacja 2018-06-17
Data Publikacji 2018-06-17
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Joseph Feld
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Berman Wifi Auto-Login",
    "short_name": "Berman Login",
    "description": "Automatically logs you into the MJBHA wifi.",
    "version": "613.18",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "https:\/\/auth.mjbha.org:4100\/*",
        "http:\/\/auth.mjbha.org:4100\/*"
    ],
    "icons": {
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/auth.mjbha.org:4100\/logon.shtml*",
                "https:\/\/auth.mjbha.org:4100\/logon.shtml*"
            ],
            "js": [
                "content script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}