Password Generator (With DinoPass)
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Password Generator (With DinoPass) là gì?
Password Generator (With DinoPass) là một tiện ích mở rộng Chrome được phát triển bởi Dominic Kirby, và tính năng chính của nó là "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.".
Tải xuống tệp CRX của tiện ích mở rộng Password Generator (With DinoPass)
Tải xuống các tệp mở rộng Password Generator (With DinoPass) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. Check out the code: https://github.com/domkirby/Chrome-Password-Generator UPDATE 1.5.1: We set a max length limit on the random password to help prevent crashing. NOTE: We do not save or store these values. DinoPass password are generated and immediately forgotten. The random passwords are generated by your browser.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Password Generator (With DinoPass) |
ID | bchnjebifjbfmnnkiagdfjeohfjpfhfk |
URL Chính Thức | https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Mô tả | This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. |
Kích Thước Tệp | 34.83 KB |
Số Lần Cài Đặt | 482 |
Phiên Bản Hiện Tại | 1.5.1 |
Cập Nhật Lần Cuối | 2017-05-29 |
Ngày Phát Hành | 2017-05-29 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Dominic Kirby |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Password Generator (With DinoPass)", "description": "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.", "version": "1.5.1", "browser_action": { "default_icon": "icon.png", "default_popup": "dpass.html" }, "permissions": [ "activeTab" ], "content_scripts": [ { "js": [ "jquery.min.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |