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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | |
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 } } |