Berman Wifi Auto-Login

Automatically logs you into the MJBHA wifi.

Τι είναι το Berman Wifi Auto-Login;

Το Berman Wifi Auto-Login είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Joseph Feld, και η κύρια λειτουργία του είναι "Automatically logs you into the MJBHA wifi.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Berman Wifi Auto-Login

Λήψη αρχείων επέκτασης Berman Wifi Auto-Login σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Berman Wifi Auto-Login Berman Wifi Auto-Login
ID cdmahgjgpldlkicpbagjjajbnkjmcaoj
Επίσημο URL https://chromewebstore.google.com/detail/berman-wifi-auto-login/cdmahgjgpldlkicpbagjjajbnkjmcaoj
Περιγραφή Automatically logs you into the MJBHA wifi.
Μέγεθος Αρχείου 34.37 KB
Αριθμός Εγκαταστάσεων 39
Τρέχουσα Έκδοση 613.18
Τελευταία Ενημέρωση 2018-06-17
Ημερομηνία Δημοσίευσης 2018-06-17
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Joseph Feld
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
    }
}