Instant Password Generator

Instantly generate strong passwords and fill in password input fields with random password by double clicking the chosen field!

Instant Password Generator क्या है?

Instant Password Generator Undefined द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Instantly generate strong passwords and fill in password input fields with random password by double clicking the chosen field!"।

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

screenshot
screenshot

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

crx प्रारूप में Instant Password Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        With this extension, you can instantly fill in any password input field with a strong password on every page you browse by double clicking the chosen input. Moreover, you can generate random passwords in the extension's popup window, where you can also modify various password settings (e.g. whether it should contain lowercase letters or be auto-copied to your clipboard).

Features:
- quickly generate strong, random passwords
- change password's complexity and choose its length or set it as random
- double click any password input on page to automatically fill it in along with other password fields, so that you don't need to confirm it!
- option to automatically copy generated passwords to your clipboard
- enable the password auto-copy option to make it even faster
- settings are synchronized with your Google account
- the extension is safe to use as it does not store any passwords either online or locally, except for copying it to your clipboard (optional)

The source code of this extension project is available at my GitLab repo:
https://gitlab.com/undefined.dev/passwordGeneratorExtension                    

एक्सटेंशन की मूल जानकारी

नाम Instant Password Generator Instant Password Generator
ID omeoohchjoocfbkjcbkgaopghekliomk
आधिकारिक URL https://chromewebstore.google.com/detail/instant-password-generato/omeoohchjoocfbkjcbkgaopghekliomk
विवरण Instantly generate strong passwords and fill in password input fields with random password by double clicking the chosen field!
फ़ाइल का आकार 114 KB
स्थापना संख्या 305
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2018-07-29
प्रकाशन तिथि 2018-07-29
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Undefined
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en,pl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "short_name": "__MSG_appShortName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "version": "1.0.1",
    "icons": {
        "16": "extension_ui\/icon16.png",
        "64": "extension_ui\/icon64.png",
        "128": "extension_ui\/icon128.png"
    },
    "browser_action": {
        "default_icon": "extension_ui\/icon16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "dist\/background.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib_script\/jquery-3.3.1.min.js",
                "dist\/content.min.js"
            ]
        }
    ]
}