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
官方網址 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
電子郵箱 [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": [
        "*:\/\/*\/*"
    ]
}