Basic Authentication
Basic authentication plugin - just keep it simple
Qu'est-ce que Basic Authentication ?
Basic Authentication est une extension Chrome développée par Adam Wojtowicz, et sa fonction principale est "Basic authentication plugin - just keep it simple".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Basic Authentication
Téléchargez les fichiers d'extension Basic Authentication au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Basic Authentication |
ID | nanfgbiblbcagfodkfeinbbhijihckml |
URL Officiel | https://chromewebstore.google.com/detail/basic-authentication/nanfgbiblbcagfodkfeinbbhijihckml |
Description | Basic authentication plugin - just keep it simple |
Taille du Fichier | 21.18 KB |
Nombre d'Installations | 2,768 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2022-01-11 |
Date de Publication | 2017-10-09 |
Évaluation | 4.83/5 Total 6 Évaluations |
Développeur | Adam Wojtowicz |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | http://wojtowicz.biz/privacy.html |
Langues Prises en Charge | 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": [ "*:\/\/*\/*" ] } |