Skip to content

Latest commit

 

History

10 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Examples

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);
    }
}

About

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

Topics

Resources

Stars

3 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages