Uno Password Generator
Simple password generator extension that helps you generate secure passwords
Uno Password Generator란 무엇입니까?
Uno Password Generator은(는) https://uno.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple password generator extension that helps you generate secure passwords"입니다.
확장 프로그램 스크린샷
Uno Password Generator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simple tool for generating strong and secure passwords. With smart mode, the password generator will detect the current website you’re on and automatically create a password that is compatible with the website’s requirements. With random mode, you can adjust the parameters of the password generator to ensure the password meets the website’s requirements. You can generate an unlimited number of passwords and copy them directly to your clipboard. Need a password manager to save these passwords? Get access at www.uno.app.
확장 프로그램 기본 정보
이름 | Uno Password Generator |
ID | anpalkjekmaihebicpojlcfjdbkbjoia |
공식 URL | https://chromewebstore.google.com/detail/uno-password-generator/anpalkjekmaihebicpojlcfjdbkbjoia |
설명 | Simple password generator extension that helps you generate secure passwords |
파일 크기 | 95.03 KB |
설치 횟수 | 102 |
현재 버전 | 0.1 |
최근 업데이트 | 2021-12-31 |
출시 날짜 | 2021-12-30 |
평점 | 5.00/5 총 32 개의 평점 |
개발자 | https://uno.app |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.uno.app |
개인정보 보호 정책 페이지 URL | https://www.uno.app/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Uno Password Generator", "version": "0.1", "description": "Simple password generator extension that helps you generate secure passwords", "permissions": [ "identity", "activeTab" ], "oauth2": { "client_id": "345064011110-rrtpqihrvc0dvbrt3eqg0lh6ssgsj339.apps.googleusercontent.com", "scopes": [ "profile email" ] }, "host_permissions": [], "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/generator.uno.app\/" ], "js": [ "js\/content.js", "popup\/bootstrap.bundle.min.js" ] } ], "action": { "default_popup": "popup\/popup.html", "default_title": "Uno Password Generator", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png", "256": "images\/256.png", "512": "images\/512.png" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png", "256": "images\/256.png", "512": "images\/512.png" }, "manifest_version": 3 } |