Hashword

Generate a unique, secure password for every web site from one master password.

Hashword란 무엇입니까?

Hashword은(는) Michael Meisel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generate a unique, secure password for every web site from one master password."입니다.

확장 프로그램 스크린샷

screenshot

Hashword 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        No password is ever stored within the extension, or anywhere else for that matter! They are generated on demand using a cryptographic hash function. The inputs are your master password and the site URL. This means you get the same unique password for each site on demand, but it cannot be used to discover your master password.                    

확장 프로그램 기본 정보

이름 Hashword Hashword
ID nkdpamnjhdjoncifjaoojhmfdmdknamo
공식 URL https://chromewebstore.google.com/detail/hashword/nkdpamnjhdjoncifjaoojhmfdmdknamo
설명 Generate a unique, secure password for every web site from one master password.
파일 크기 156 KB
설치 횟수 79
현재 버전 0.6.3
최근 업데이트 2023-05-03
출시 날짜 2019-03-08
평점 4.60/5 총 5 개의 평점
개발자 Michael Meisel
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://meisel.dev/hashword/
도움말 페이지 URL https://github.com/mmeisel/hashword
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hashword",
    "version": "0.6.3",
    "manifest_version": 2,
    "description": "Generate a unique, secure password for every web site from one master password.",
    "background": {
        "scripts": [
            "rules.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Hashword",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16-inactive.png",
            "19": "images\/icon19-inactive.png",
            "32": "images\/icon32-inactive.png",
            "38": "images\/icon38-inactive.png"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            }
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "incognito": "spanning",
    "minimum_chrome_version": "46",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "declarativeContent",
        "storage"
    ]
}