Berman Wifi Auto-Login

Automatically logs you into the MJBHA wifi.

Berman Wifi Auto-Loginとは何ですか?

Berman Wifi Auto-LoginはJoseph Feldによって開発されたChromeの拡張機能で、その主な機能は「Automatically logs you into the MJBHA wifi.」です。

拡張機能のスクリーンショット

screenshot

Berman Wifi Auto-Login拡張機能のCRXファイルをダウンロード

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
Eメール [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
    }
}