0

when I try to edit

open "chrome://settings"

It says: The file /chrome:/settings does not exist.

open -a Google\ Chrome "chrome://settings"

also couldn't open the settings in chrome. seems the open command only could open the http && https protocol

In fact, I want to debug some Node code in Chrome Dev Tool, every time I run

node --inspect --debug-brk index.js

I must copy the debug link into Chrome to open the Dev Tool. I want to open it automatically. But the open command cannot it.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Loatheb
  • 52
  • 6

1 Answers1

0

I did some research. Seems Chrome doesn't allow such internal urls for security concerns. Accessing these internal pages, can't be accessed directly, even using using window.location.replace("chrome://settings/")

These involve either creating an extension, or changes the chrome profile for default/first page opened.

Though these would solve your problem, but both of them are hacky way of doings things, and hence not advisable.

Cœur
  • 37,241
  • 25
  • 195
  • 267
computnik
  • 287
  • 1
  • 3
  • 15