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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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": [
        "*:\/\/*\/*"
    ]
}