mirror of
https://github.com/S2-/pwgen.git
synced 2025-08-03 01:00:04 +02:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
b22bfe6a89 | |||
bb39fb0363 | |||
fa2a5ccc81 | |||
1a5d5438cf | |||
c534404577 |
BIN
img/cast.gif
BIN
img/cast.gif
Binary file not shown.
Before Width: | Height: | Size: 366 KiB After Width: | Height: | Size: 528 KiB |
Binary file not shown.
Before Width: | Height: | Size: 29 KiB After Width: | Height: | Size: 25 KiB |
@@ -2,7 +2,7 @@
|
|||||||
"description": "Just a toolbar button that generates a password and copies it to your clipboard.",
|
"description": "Just a toolbar button that generates a password and copies it to your clipboard.",
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "pwgen reloaded",
|
"name": "pwgen reloaded",
|
||||||
"version": "1.1.20",
|
"version": "1.1.22",
|
||||||
"homepage_url": "https://github.com/S2-/pwgen",
|
"homepage_url": "https://github.com/S2-/pwgen",
|
||||||
"icons": {
|
"icons": {
|
||||||
"48": "icons/lock-48.png"
|
"48": "icons/lock-48.png"
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
function randPassword(length, includeSpecial, exclude) {
|
function randPassword(length, includeSpecial, exclude) {
|
||||||
let pwdChars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
let pwdChars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
||||||
if (includeSpecial) {
|
if (includeSpecial) {
|
||||||
pwdChars += '°^!"§$%&/()=?`´\\}][{²³€|<>-.,;:*+_µ@~';
|
pwdChars += '!"#$%&\'()*+,-./:;<=>?@[\]^_`{|}~';
|
||||||
}
|
}
|
||||||
|
|
||||||
if (exclude) {
|
if (exclude) {
|
||||||
|
Reference in New Issue
Block a user