Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arshadkazmi42/firefox-profiles
Get list of all firefox profiles - crossplatform
https://github.com/arshadkazmi42/firefox-profiles
firefox firefox-profiles profiles user-profiles
Last synced: about 1 month ago
JSON representation
Get list of all firefox profiles - crossplatform
- Host: GitHub
- URL: https://github.com/arshadkazmi42/firefox-profiles
- Owner: arshadkazmi42
- License: mit
- Created: 2019-08-25T15:38:26.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-12T13:50:03.000Z (over 2 years ago)
- Last Synced: 2024-10-28T03:17:34.137Z (3 months ago)
- Topics: firefox, firefox-profiles, profiles, user-profiles
- Language: JavaScript
- Size: 93.8 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# firefox-profiles
[![Build](https://github.com/arshadkazmi42/firefox-profiles/actions/workflows/nodejs.yml/badge.svg)](https://github.com/arshadkazmi42/firefox-profiles/actions/workflows/nodejs.yml)
[![NPM Version](https://img.shields.io/npm/v/firefox-profiles.svg)](https://www.npmjs.com/package/firefox-profiles)
[![NPM Downloads](https://img.shields.io/npm/dt/firefox-profiles.svg)](https://www.npmjs.com/package/firefox-profiles)
[![Github Repo Size](https://img.shields.io/github/repo-size/arshadkazmi42/firefox-profiles.svg)](https://github.com/arshadkazmi42/firefox-profiles)
[![LICENSE](https://img.shields.io/npm/l/firefox-profiles.svg)](https://github.com/arshadkazmi42/firefox-profiles/blob/master/LICENSE)
[![Contributors](https://img.shields.io/github/contributors/arshadkazmi42/firefox-profiles.svg)](https://github.com/arshadkazmi42/firefox-profiles/graphs/contributors)
[![Commit](https://img.shields.io/github/last-commit/arshadkazmi42/firefox-profiles.svg)](https://github.com/arshadkazmi42/firefox-profiles/commits/master)Get all firefox profile details
## Install
```
npm i firefox-profiles
```## Usage
```javascript
const firefoxProfiles = require('firefox-profiles');
// For mac
const profiles = firefoxProfiles('darwin');
console.log(profiles);// Output
// [
// {
// Name: 'ffire17.xx.xx-x.xx.xx',
// IsRelative: '1',
// Path: 'Profiles/y1iixeh7.ffire17.xx.xx-x.xx.xx'
// }
// ]// For Linux
const profiles = firefoxProfiles('linux');// For windows
const profiles = firefoxProfiles('win32');
```## Contributing
Interested in contributing to this project?
You can log any issues or suggestion related to this library [here](https://github.com/arshadkazmi42/firefox-profiles/issues/new)Read our contributing [guide](CONTRIBUTING.md) on getting started with contributing to the codebase
## Credits
Inspired by work of [firefox-profile-js](https://github.com/saadtazi/firefox-profile-js) by [Saad Tazi](https://github.com/saadtazi)