Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jianyuan/onetab-export-to-json
🔖 Export URLs directly from OneTab's LevelDB database to JSON
https://github.com/jianyuan/onetab-export-to-json
chrome-extension onetab
Last synced: 12 days ago
JSON representation
🔖 Export URLs directly from OneTab's LevelDB database to JSON
- Host: GitHub
- URL: https://github.com/jianyuan/onetab-export-to-json
- Owner: jianyuan
- License: mit
- Created: 2020-03-29T19:45:08.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-09-04T15:39:43.000Z (2 months ago)
- Last Synced: 2024-09-05T21:52:35.850Z (2 months ago)
- Topics: chrome-extension, onetab
- Language: Go
- Homepage:
- Size: 36.1 KB
- Stars: 18
- Watchers: 3
- Forks: 3
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - jianyuan/onetab-export-to-json - 🔖 Export URLs directly from OneTab's LevelDB database to JSON (Go)
README
# onetab-export-to-json
Export URLs directly from [OneTab](https://chrome.google.com/webstore/detail/onetab/chphlpgkkbolifaimnlloiipkdnihall)'s LevelDB database to JSON.
## Installation
```sh
$ go install github.com/jianyuan/onetab-export-to-json@latest# go will build the program and install the binary to $GOPATH/bin
$ $GOPATH/bin/onetab-export-to-json
```## Usage
```
$ onetab-export-to-json
-i string
LevelDB database path (shorthand)
-input string
LevelDB database path
-o string
Output file path ("-" to print to standard output) (default "-")
-output string
Output file path ("-" to print to standard output) (default "-")
```Typical LevelDB locations:
| OS | Path |
| ------- | ------------------------------------------------------------------------------------- |
| Windows | `C:\Users\{USER}\AppData\Local\Google\Chrome\User Data\Default\Local Storage\leveldb` |Output to standard output:
```sh
$ onetab-export-to-json -input {PATH}
```Output to file:
```sh
$ onetab-export-to-json -input {PATH} -output tabs.json
```