BLUE
PHP 7.4.33
Path:
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/chrome-launcher
Run
Logout
Edit File
Size: 1.53 KB
Close
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/chrome-launcher/manual-chrome-launcher.js
Text
Base64
#!/usr/bin/env node 'use strict'; // Keep this file in sync with lighthouse // TODO: have LH depend on this one. /** * @fileoverview Script to launch a clean Chrome instance on-demand. * * Assuming Lighthouse is installed globally or `npm link`ed, use via: * chrome-debug * Optionally enable extensions or pass a port, additional chrome flags, and/or a URL * chrome-debug --port=9222 * chrome-debug http://goat.com * chrome-debug --show-paint-rects * chrome-debug --enable-extensions */ require('./compiled-check.js')('./dist/chrome-launcher.js'); const {Launcher, launch} = require('./dist/chrome-launcher'); const args = process.argv.slice(2); const chromeFlags = []; let startingUrl; let port; let ignoreDefaultFlags; if (args.length) { const providedFlags = args.filter(flag => flag.startsWith('--')); const portFlag = providedFlags.find(flag => flag.startsWith('--port=')); if (portFlag) port = parseInt(portFlag.replace('--port=', ''), 10); const enableExtensions = !!providedFlags.find(flag => flag === '--enable-extensions'); // The basic pattern for enabling Chrome extensions if (enableExtensions) { ignoreDefaultFlags = true; chromeFlags.push(...Launcher.defaultFlags().filter(flag => flag !== '--disable-extensions')); } chromeFlags.push(...providedFlags); startingUrl = args.find(flag => !flag.startsWith('--')); } launch({ startingUrl, port, ignoreDefaultFlags, chromeFlags, }) // eslint-disable-next-line no-console .then(v => console.log(`✨ Chrome debugging port: ${v.port}`));
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 6 × Files: 9
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
.github
DIR
-
drwxr-xr-x
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
bin
DIR
-
drwxr-xr-x
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
chrome-launcher
DIR
-
drwxr-xr-x
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
dist
DIR
-
drwxr-xr-x
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
docs
DIR
-
drwxr-xr-x
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
scripts
DIR
-
drwxr-xr-x
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
.clang-format
117 B
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
changelog.md
9.68 KB
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
compiled-check.js
339 B
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
contributing.md
559 B
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
LICENSE
11.08 KB
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
manual-chrome-launcher.js
1.53 KB
lrwxr-xr-x
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
package.json
1.26 KB
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
README.md
6.71 KB
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
tsconfig.json
465 B
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).