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
    }
}