0.0.1 • Published 8 years ago

firefox-tabs v0.0.1

Weekly downloads
2
License
BSD-3-Clause
Repository
github
Last release
8 years ago

firefox-tabs Build Status

Get Firefox tab information from sessionstore's recovery.js file.

Install

$ npm install --save firefox-tabs

Usage

const firefoxTabs = require('firefox-tabs');

console.log(firefoxTabs.sync());
/*
{
  deviceName: 'sage',
  modified: 2016-09-26T18:49:13.682Z,
  tabCount: 2,
  tabs: [
    {
      title: 'imbue.studio',
      url: 'https://imbue.studio'
    },
    {
      title: 'Google',
      url:  'https://www.google.com'
    }
  ]
}
*/

API

Tabs are fetched from firefox's sessionstore-backup folder for the current profile.

firefoxTabs()

Returns a promise for an array of devices.

firefoxTabs.sync()

Returns an array of devices.

Related

License

BSD 3-Clause © Fielding Johnston

0.0.1

8 years ago

0.1.0

8 years ago