Basic Authentication
Basic authentication plugin - just keep it simple
¿Qué es Basic Authentication?
Basic Authentication es una extensión de Chrome desarrollada por Adam Wojtowicz, y su función principal es "Basic authentication plugin - just keep it simple".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Basic Authentication
Descarga archivos de extensión Basic Authentication 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
Please note that this extension does not collect, store or process your private information as well as it does not collect any analytics data. Basic authentication credentials are stored locally on your machine and they are not synchronized with any external service. Any saved data will be lost once extension will be uninstalled. You are using at your own risk. ---------- Basic authentication is widely used for many staging environments. With this extension you can automate the logging process with a few easy steps. If you don't need specific domain settings just put your credentials at the very beginning of your work and don't worry about Basic Auth prompt window anymore. At any time you can use "Advanced settings" to provide more credentials for specific domains. ---------- Last changes: - Manifest 3 update - Removed proxy support - Code refactoring In order to improve your experience please report bugs and issues!
Información Básica de la Extensión
Nombre | Basic Authentication |
ID | nanfgbiblbcagfodkfeinbbhijihckml |
URL Oficial | https://chromewebstore.google.com/detail/basic-authentication/nanfgbiblbcagfodkfeinbbhijihckml |
Descripción | Basic authentication plugin - just keep it simple |
Tamaño del Archivo | 21.18 KB |
Cantidad de Instalaciones | 2,768 |
Versión Actual | 2.0.0 |
Última Actualización | 2022-01-11 |
Fecha de Publicación | 2017-10-09 |
Calificación | 4.83/5 Total de 6 Calificaciones |
Desarrollador | Adam Wojtowicz |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Política de Privacidad | http://wojtowicz.biz/privacy.html |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Basic Authentication", "description": "Basic authentication plugin - just keep it simple", "version": "2.0.0", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "action": { "default_icon": { "32": "assets\/icon32.png" }, "default_popup": "config.html" }, "background": { "service_worker": "background.js", "type": "module" }, "options_ui": { "page": "options.html" }, "permissions": [ "notifications", "webRequest", "storage" ], "host_permissions": [ "*:\/\/*\/*" ] } |