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)
- Host: GitHub
- URL: https://github.com/thanadolps/snss
- Owner: thanadolps
- License: gpl-3.0
- Created: 2025-06-21T20:41:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-21T21:25:53.000Z (about 1 year ago)
- Last Synced: 2025-06-21T21:33:03.679Z (about 1 year ago)
- Topics: chrome, chromium, session, snss, tabs
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
}
}
```