unshorten/README.md

24 lines
488 B
Markdown
Raw Normal View History

2024-04-14 03:35:11 +00:00
# Unshortener
2024-04-14 03:22:36 +00:00
Firefox Extension and API server for revealing links behind shortened URLs.
2024-04-14 03:24:16 +00:00
**Supported sites**:
- t.co
- tinyurl.com
2024-04-14 03:22:36 +00:00
## Usage
In order to deal with CORS, Unshorten must send links to a resolver API.
```shell
cd server
make build
docker -d --name unshortener -p 8000:8000 unshortener-api
```
Build the extension and import into Firefox. Right click on a link and choose
"Unshorten Link". The result will be copied to the clipboard.
```shell
cd extension
make zip
2024-04-14 03:24:16 +00:00
```