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 2 months 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 (almost 3 years ago)
- Last Synced: 2025-02-08T07:28:00.517Z (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
[](https://github.com/arshadkazmi42/firefox-profiles/actions/workflows/nodejs.yml)
[](https://www.npmjs.com/package/firefox-profiles)
[](https://www.npmjs.com/package/firefox-profiles)
[](https://github.com/arshadkazmi42/firefox-profiles)
[](https://github.com/arshadkazmi42/firefox-profiles/blob/master/LICENSE)
[](https://github.com/arshadkazmi42/firefox-profiles/graphs/contributors)
[](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)