1
0
mirror of https://github.com/S2-/pwgen.git synced 2025-08-02 17:00:03 +02:00
Files
pwgen-reloaded/popup/pwgen.js
2017-11-15 17:14:35 +01:00

66 lines
1.8 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

function randPassword(length, includeSpecial) {
let pwdChars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890";
if (includeSpecial) {
pwdChars += '°^!"§$%&/()=?`´\}][{²³€|<>-.,;:*+_';
}
let randPassword = Array(length).fill(pwdChars).map(function(x) {
return x[Math.floor(Math.random() * x.length)]
}).join('');
return randPassword;
}
function getParams() {
return {
length: parseInt(document.getElementById('length').value),
special: document.getElementById('special').checked,
directcopy: document.getElementById('directcopy').checked
}
}
function loadOptions() {
return browser.storage.local.get({
length: 14,
special: true,
directcopy: false
});
}
function saveOptions(options) {
return browser.storage.local.set(options);
}
function copypasstoclippboard() {
var copyText = document.getElementById('pw');
copyText.select();
document.execCommand('copy');
}
document.getElementById('new').addEventListener('click', (ev) => {
ev.preventDefault();
var params = getParams();
document.getElementById('pw').value = randPassword(params.length, params.special);
saveOptions(params);
});
document.getElementById('copy').addEventListener('click', (ev) => {
ev.preventDefault();
copypasstoclippboard();
});
document.getElementById('directcopy').addEventListener('change', (ev) => {
console.log(getParams());
saveOptions(getParams());
});
loadOptions().then((options) => {
console.log(options);
document.getElementById('length').value = options.length;
document.getElementById('special').checked = options.special;
document.getElementById('directcopy').checked = options.directcopy;
document.getElementById('pw').value = randPassword(getParams().length, getParams().special);
if (options.directcopy) {
copypasstoclippboard();
}
});