An open API service indexing awesome lists of open source software.

https://github.com/thanadolps/snss

Basic SNSS file parsing (eg. Chrome Session and Tabs Files)
https://github.com/thanadolps/snss

chrome chromium session snss tabs

Last synced: about 2 months ago
JSON representation

Basic SNSS file parsing (eg. Chrome Session and Tabs Files)

Awesome Lists containing this project

README

          

Basic SNSS file parsing (eg. Chrome Session and Tabs Files)

# Examples
```rust
let data = std::fs::read("Session")?;
let snss = snss::parse(&data)?;
for command in snss.commands {
if let snss::Content::Tab(tab) = command.content {
println!("Tab #{}: [{}]({})", tab.id, tab.title, tab.url);
}
}
```