Berman Wifi Auto-Login
Automatically logs you into the MJBHA wifi.
¿Qué es Berman Wifi Auto-Login?
Berman Wifi Auto-Login es una extensión de Chrome desarrollada por Joseph Feld, y su función principal es "Automatically logs you into the MJBHA wifi.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Berman Wifi Auto-Login
Descarga archivos de extensión Berman Wifi Auto-Login en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | cdmahgjgpldlkicpbagjjajbnkjmcaoj |
URL Oficial | https://chromewebstore.google.com/detail/berman-wifi-auto-login/cdmahgjgpldlkicpbagjjajbnkjmcaoj |
Descripción | Automatically logs you into the MJBHA wifi. |
Tamaño del Archivo | 34.37 KB |
Cantidad de Instalaciones | 39 |
Versión Actual | 613.18 |
Última Actualización | 2018-06-17 |
Fecha de Publicación | 2018-06-17 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | Joseph Feld |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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 } } |