Basic Authentication

Basic authentication plugin - just keep it simple

Basic Authenticationとは何ですか?

Basic AuthenticationはAdam Wojtowiczによって開発されたChromeの拡張機能で、その主な機能は「Basic authentication plugin - just keep it simple」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Basic Authentication拡張機能のCRXファイルをダウンロード

Basic Authentication拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Basic Authentication Basic Authentication
ID nanfgbiblbcagfodkfeinbbhijihckml
公式URL https://chromewebstore.google.com/detail/basic-authentication/nanfgbiblbcagfodkfeinbbhijihckml
説明 Basic authentication plugin - just keep it simple
ファイルサイズ 21.18 KB
インストール数 2,768
現在のバージョン 2.0.0
最終更新日 2022-01-11
公開日 2017-10-09
評価 4.83/5 合計 6 レビュー
開発者 Adam Wojtowicz
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL http://wojtowicz.biz/privacy.html
対応言語 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": [
        "*:\/\/*\/*"
    ]
}