Password Generator (With DinoPass)
This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
Apa itu Password Generator (With DinoPass)?
Password Generator (With DinoPass) adalah ekstensi Chrome yang dikembangkan oleh Dominic Kirby, dan fitur utamanya adalah "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.".
Unduh Berkas CRX Ekstensi Password Generator (With DinoPass)
Unduh file ekstensi Password Generator (With DinoPass) dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Password Generator (With DinoPass) |
ID | bchnjebifjbfmnnkiagdfjeohfjpfhfk |
URL Resmi | https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk |
Deskripsi | This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API. |
Ukuran File | 34.83 KB |
Jumlah Instalasi | 482 |
Versi Saat Ini | 1.5.1 |
Terakhir Diperbarui | 2017-05-29 |
Tanggal Publikasi | 2017-05-29 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | Dominic Kirby |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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:\/\/*\/*" ] } ] } |