Minimalistic single-use email address generator.
Total ratings
4.60
(Rating count:
5)
User reviews
Recent rating average:
4.00
All time rating average:
4.60
Rating filters
5 star 4 star
3 star
2 star
1 star
Date | Author | Rating | Lang | Comment |
---|---|---|---|---|
2019-03-05 | A Google user | Excellent idea. To top off the UX on this extension, I'd suggest adding a "copied" response of some kind, followed by an automatic closing of the popup window. | ||
2019-03-05 | A Google user | en | Excellent idea. To top off the UX on this extension, I'd suggest adding a "copied" response of some kind, followed by an automatic closing of the popup window. | |
2019-02-15 | Petja Touru | Simple and does what is says. Howeve I would consider of having full range on alphabets on the generated string, this way: chars = '0123456789abcdefghijklmnopqrstuvwxyz' Array.from(window.crypto.getRandomValues(new Uint32Array(12))).map(x => chars[x % chars.length]).join('') | ||
2019-02-15 | Petja Touru | en | Simple and does what is says. Howeve I would consider of having full range on alphabets on the generated string, this way: chars = '0123456789abcdefghijklmnopqrstuvwxyz' Array.from(window.crypto.getRandomValues(new Uint32Array(12))).map(x => chars[x % chars.length]).join('') |