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.”。
擴展截圖
下載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 |
ID | cdmahgjgpldlkicpbagjjajbnkjmcaoj |
官方網址 | 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 } } |