Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
chrome-profile-list
Advanced tools
Get a list of existing Google Chrome, Google Chrome Canary or Chromium user profiles
npm install chrome-profile-list
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' } ]
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).
Returns an array of objects ({ name, path}) one for each available profile excluding the default System Profile
.
variant
One of chromeProfileList.variants
, defaults to CHROME
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
Israel Roldan
ISC
FAQs
Utility package to list available Google Chrome Profiles
The npm package chrome-profile-list receives a total of 208 weekly downloads. As such, chrome-profile-list popularity was classified as not popular.
We found that chrome-profile-list demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.