New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

chrome-profile-list

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chrome-profile-list

Utility package to list available Google Chrome Profiles

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
252
increased by72.6%
Maintainers
1
Weekly downloads
 
Created
Source

chrome-profile-list

Get a list of existing Google Chrome, Google Chrome Canary or Chromium user profiles

Install

npm install chrome-profile-list

Usage

var chromeProfileList = require('chrome-profile-list');
console.log(chromeProfileList());

// Something like this is logged to the console:

[ { displayName: 'User',
    profileDirName: 'Default',
    profileDir: '/Users/username/Library/Application Support/Google/Chrome/Default',
    profilePictureUrl: 'https://x.googleusercontent.com/path/to/profile/picture.jpg' },
  { displayName: 'Guest',
    profileDirName: 'Guest Profile',
    profileDir: '/Users/username/Library/Application Support/Google/Chrome/Guest Profile',
    profilePictureUrl: null },
  { displayName: 'Person 1',
    profileDirName: 'Profile 1',
    profileDir: '/Users/username/Library/Application Support/Google/Chrome/Profile 1',
    profilePictureUrl: 'https://x.googleusercontent.com/path/to/profile/picture.jpg' } ]

Supported environments

  • node.js

Supported operating systems

This module follows the conventions described by https://chromium.googlesource.com/chromium/src/+/HEAD/docs/user_data_dir.md so it provides support for macOS, Windows and Linux (mileage may vary).

API

chromeProfileList(variant)

Returns an array of objects ({ name, path}) one for each available profile excluding the default System Profile.

arguments

variant
One of chromeProfileList.variants, defaults to CHROME

chromeProfileList.variants

An enum of possible variants to search profiles for:

  • CHROME
  • CANARY
  • CHROMIUM

Example:

var chromeProfileList = require('chrome-profile-list');

console.log(chromeProfileList(chromeProfileList.variants.CHROMIUM));

// Logs a list of available chromium profiles to the console

Author

Israel Roldan

LICENSE

ISC

Keywords

FAQs

Package last updated on 11 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc