Basic Authentication

Basic authentication plugin - just keep it simple

Basic Authentication क्या है?

Basic Authentication Adam Wojtowicz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Basic authentication plugin - just keep it simple"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Basic Authentication एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
        "*:\/\/*\/*"
    ]
}