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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Instantly generate strong passwords and fill in password input fields with random password by double clicking the chosen field!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Instant Password Generator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}