Password Generator
Generates domain specific passwords
Password Generator란 무엇입니까?
Password Generator은(는) Agiliq에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generates domain specific passwords"입니다.
확장 프로그램 스크린샷
Password Generator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Password Generator Update Replaced MD5 with SHA2 as MD5 is broken . Summary A client side password generator. Update: We have this for Android. https://play.google.com/store/apps/details?id=com.passgen.passwordgenrator What is it Its a chrome app to generate unique passwords for each site. Depending upon the domain and a master password a unique password is generated. It doesn't need any server and everything happens on the client side. Why? I want to use a unique password for each website. However, I don't want to use lastpass/1password as I find their interface confusing and overkill, and I don't want my password stored on remote servers. I use a simple passwording scheme. I have one master password. For each site, I append the first two letters of the domain to master password and use that as the site password. This is sub-optimal as its easy to understand this scheme, if say two of my passwords are leaked. I want to algorithmically generate the password on the client side, with a chrome app. How does it work? password_1 = SHA256(masterpassword+domain) password = take_first_8_letters(password_1) This will generate a per domain password with 8 characters of entropy and it depends only on master password and the domain. In the UI side, it works like this: You set your master password in the app. You click the Chrome app button to generate a domain specific password. It generates the domain specific password and copies the password to clipboard. You use the password to signup. Next time you want to login, you click the app to get the password.
확장 프로그램 기본 정보
이름 | Password Generator |
ID | nnjgaeekiplalipomfgacalgehhcckbp |
공식 URL | https://chromewebstore.google.com/detail/password-generator/nnjgaeekiplalipomfgacalgehhcckbp |
설명 | Generates domain specific passwords |
파일 크기 | 149 KB |
설치 횟수 | 762 |
현재 버전 | 1.2 |
최근 업데이트 | 2013-01-10 |
출시 날짜 | 2013-01-10 |
평점 | 3.95/5 총 20 개의 평점 |
개발자 | Agiliq |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://agiliq.com/ |
도움말 페이지 URL | http://agiliq.com/ |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Password Generator", "version": "1.2", "manifest_version": 2, "description": "Generates domain specific passwords ", "browser_action": { "default_icon": "images\/icon.png", "default_title": "Password generator", "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "permissions": [ "tabs", " |