1
0
mirror of https://github.com/S2-/pwgen.git synced 2025-08-02 17:00:03 +02:00

2 Commits

Author SHA1 Message Date
s2
fcceca980c v1.1.8 2017-11-21 19:44:29 +01:00
s2
59094b76bb increment delay to 200ms 2017-11-21 19:44:03 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
"description": "Just a toolbar button that generates a password and copies it to your clipboard.",
"manifest_version": 2,
"name": "pwgen reloaded",
"version": "1.1.7",
"version": "1.1.8",
"homepage_url": "https://github.com/S2-/pwgen",
"icons": {
"48": "icons/lock-48.png"

View File

@@ -39,7 +39,7 @@ function copypasstoclippboard() {
var copyText = document.getElementById('pw');
copyText.select();
document.execCommand('copy');
}, 100);
}, 200);
}
document.addEventListener('DOMContentLoaded', function() {