Secure Password Generator

Generates random secure passwords.

Secure Password Generator란 무엇입니까?

Secure Password Generator은(는) mar.kolya에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generates random secure passwords."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This add-on allows you to easily create random and secure passwords.
Right click on any password field on the webpage and select "Secure Password Generator"/"Generate password". Newly generated password will be inserted into selected field.
You can use "Insert previous password" context menu option if form requires you to repeat your password.
You can also use "Secure Password Generator" button in top right corner of Firefox window to see last generated password, change settings and create new secure passwords.

Hope this is useful. :)                    

확장 프로그램 기본 정보

이름 Secure Password Generator Secure Password Generator
ID dapehldnfebpbfpfknddmlhghjlbjhdb
공식 URL https://chromewebstore.google.com/detail/secure-password-generator/dapehldnfebpbfpfknddmlhghjlbjhdb
설명 Generates random secure passwords.
파일 크기 364 KB
설치 횟수 7,344
현재 버전 1.0.9
최근 업데이트 2018-10-08
출시 날짜 2018-10-07
평점 4.84/5 총 25 개의 평점
개발자 mar.kolya
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mar-kolya/secure-password-generator
지원되는 언어 de,en,es,cs,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "1.0.9",
    "default_locale": "en",
    "homepage_url": "https:\/\/addons.mozilla.org\/firefox\/addon\/secure-password-generator\/",
    "icons": {
        "16": "icons\/password-16.png",
        "32": "icons\/password-32.png",
        "48": "icons\/password-48.png",
        "64": "icons\/password-64.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/password-16.png",
            "32": "icons\/password-32.png",
            "48": "icons\/password-48.png",
            "64": "icons\/password-64.png"
        },
        "default_title": "Secure Password Generator",
        "default_popup": "popup.html",
        "theme_icons": [
            {
                "light": "icons\/password-16-light.png",
                "dark": "icons\/password-16.png",
                "size": 16
            },
            {
                "light": "icons\/password-32-light.png",
                "dark": "icons\/password-32.png",
                "size": 32
            }
        ]
    },
    "commands": {
        "generate-password": {
            "suggested_key": {
                "default": "Alt+G"
            },
            "description": "Generate Password"
        },
        "insert-previous-password": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Insert Previous Password"
        }
    },
    "background": {
        "scripts": [
            "dist\/init.js",
            "dist\/background.js"
        ]
    }
}