https://github.com/webdevian/uuids-to-file-bookmarklet
Bookmarklet for generating a variable number of uuids and saving them to a text file
https://github.com/webdevian/uuids-to-file-bookmarklet
Last synced: 26 days ago
JSON representation
Bookmarklet for generating a variable number of uuids and saving them to a text file
- Host: GitHub
- URL: https://github.com/webdevian/uuids-to-file-bookmarklet
- Owner: webdevian
- Created: 2021-11-03T10:06:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-03T10:15:21.000Z (over 4 years ago)
- Last Synced: 2025-01-10T16:29:59.954Z (over 1 year ago)
- Language: JavaScript
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# UUIDs to text file bookmarklet
Bookmarklet for generating a variable number of uuids and saving them to a text file
## About
Save as a browser bookmarklet to quickly generate multiple v4 UUIDs
## Installation
- Create a new browser bookmark
- Set the `URL` to `javascript:` and the contents of `uuid.min.js`
```js
javascript:!function(){var n=new function(){function n(n){return 0|n*Math.random()}function t(t){for(var e="",o=0;oe+=`${e?"\n":""}${n.generate()}`,t),function(n,t){var e=document.createElement("a");e.href=window.URL.createObjectURL(new Blob([n])),e.download=t,document.body.appendChild(e),e.click(),e.parentNode.removeChild(e)}(e,`${t}xUUIDs.txt`)}();
```
