OK, so I finally figured out a "hack". This hack requires creating an extension to handle the request. I already tried quite a few attempts to "hijack" Chrome with an easier way but seems that Chrome is secure enough to stop me from doing that and this is the closest I can get.

First, create an empty directory somewhere accessible on the hard drive.

Create a file manifest.json with the following content:

{
    "name": "Open Chrome URLs",
    "version": "1.0",
    "manifest_version": 2
}

Create a file open.html with the following content:

<html>
<head>
<title>Open Chrome URLs</title>
<script type="text/javascript" src="open.js"></script>
</head>
<body>
</body>
</html>

Create a file open.js with the following content:

window.addEventListener("load", function(){
    var key = "secretKey"; // replace "secretKey" with your own secret key
    if(window.location.search == "?key=" + key && window.location.hash.length > 1){
        chrome.tabs.update({
            'url': "chrome://" + window.location.hash.substr(1) + "/"
        });
    }else{
        document.body.appendChild(document.createTextNode("Invalid"));
    }
});

Replace the secret key with your own if wanted.

Then, open the Extensions page (chrome://extensions/).

Check the "Developer mode" checkbox and click "Load unpacked extension" and select the directory that you just created.

You should now see a new extension appeared.

Copy the extension id.

Finally, start Chrome with the following URL as the parameter.

chrome-extension://nihlceAnywayPutTheExtensionIdHere/open.html?key=secretKey#settings

Replace the first part with the extension id with the one you just copied.

Also replace the secretKey with the one you set above.

You can also use most of the other Chrome URLs instead of settings.

Note: you need a shortcut to Chrome instead of an Internet link.

Good luck!

Answer from Alvin Wong on Stack Exchange
🌐
YouTube
youtube.com › watch
How to Open Google Chrome Settings in 5 Seconds PC & Laptop Guide - YouTube
Want to access your Google Chrome settings instantly? In this quick tutorial, learn how to open Chrome settings on your PC or laptop in just 5 seconds! Perfe...
Published   April 16, 2025
🌐
Google Support
support.google.com › chrome › answer › 3296214
Reset Chrome settings to default - Google Chrome Help
You can restore your browser settings in Chrome at any time. You might need to do this if apps or extensions you installed changed your settings without your knowledge. Your saved bookmarks and passwords won't be deleted or changed. On your computer, open Chrome.
🌐
YouTube
youtube.com › watch
How to Open Google Chrome Settings - YouTube
How to open Google Chrome Settings? In this tutorial, I show you how to open the settings for the Google Chrome Browser on PC, Laptop, Mac, Chromebook and an...
Published   3 weeks ago
🌐
CustomGuide
customguide.com › google-chrome › access-chrome-settings
Access Chrome Settings | CustomGuide
Click the Customize and Control Google Chrome menu button. Select Settings.
🌐
Universal 1 Credit Union
u1cu.org › files › u1cu15 › 1 › file › Browser Settings › Chrome Settings.pdf pdf
Google Chrome Settings Opening the Settings Page
Google Chrome Settings · Opening the Settings Page · You can open the Settings page by clicking on the icon with three stacked horizontal · lines to the left of the address bar; this will open up a dropdown menu, and Settings · will be located to the bottom of the screen.
Top answer
1 of 5
5

OK, so I finally figured out a "hack". This hack requires creating an extension to handle the request. I already tried quite a few attempts to "hijack" Chrome with an easier way but seems that Chrome is secure enough to stop me from doing that and this is the closest I can get.

First, create an empty directory somewhere accessible on the hard drive.

Create a file manifest.json with the following content:

{
    "name": "Open Chrome URLs",
    "version": "1.0",
    "manifest_version": 2
}

Create a file open.html with the following content:

<html>
<head>
<title>Open Chrome URLs</title>
<script type="text/javascript" src="open.js"></script>
</head>
<body>
</body>
</html>

Create a file open.js with the following content:

window.addEventListener("load", function(){
    var key = "secretKey"; // replace "secretKey" with your own secret key
    if(window.location.search == "?key=" + key && window.location.hash.length > 1){
        chrome.tabs.update({
            'url': "chrome://" + window.location.hash.substr(1) + "/"
        });
    }else{
        document.body.appendChild(document.createTextNode("Invalid"));
    }
});

Replace the secret key with your own if wanted.

Then, open the Extensions page (chrome://extensions/).

Check the "Developer mode" checkbox and click "Load unpacked extension" and select the directory that you just created.

You should now see a new extension appeared.

Copy the extension id.

Finally, start Chrome with the following URL as the parameter.

chrome-extension://nihlceAnywayPutTheExtensionIdHere/open.html?key=secretKey#settings

Replace the first part with the extension id with the one you just copied.

Also replace the secretKey with the one you set above.

You can also use most of the other Chrome URLs instead of settings.

Note: you need a shortcut to Chrome instead of an Internet link.

Good luck!

2 of 5
3

Here’s a very simple AutoHotkey solution:

WinActivate Chrome 
send ^t
sleep 100 
sendraw chrome://settings/ ; any URL works 
sleep 100 
send {enter}
🌐
Reddit
reddit.com › r/chrome › where did the settings go
r/chrome on Reddit: Where did the settings go
May 26, 2024 -

I am quite embarrassed to ask this as mostly I am the one who helps people with technical stuff. But where the heck did the settings tab go? If I click the 3 dots, the 'settings' (instellingen in Dutch) is no where to be found?

Find elsewhere
🌐
Google Support
support.google.com › chrome › thread › 39986428 › is-there-any-shortcut-key-to-open-settings-page-chrome-settings-in-chrome
Is there any shortcut key to open Settings Page (chrome://settings/) in chrome ? - Google Chrome Community
Skip to main content · Google Chrome Help · Sign in · Google Help · Help Center · Community · Google Chrome · Terms of Service · Submit feedback · Send feedback on
🌐
BrowserStack
browserstack.com › home › guide › how to change browser settings
How to Change Browser Settings | BrowserStack
December 12, 2024 - Step 2. Click on Chrome in the menu bar, then select Preferences. Step 3. Similar to Windows, navigate through the settings to customize: ... Step 4. Click on Advanced to access more options.
🌐
Quora
quora.com › How-do-I-open-Chrome-settings-with-a-keyboard
How to open Chrome settings with a keyboard - Quora
Answer: You can open Chrome's settings by going to File > Preferences or hitting the hamburger button on the right edge and clicking Settings. A quicker way is to hit Command-comma, but it works only on a Mac.
🌐
Microsoft Learn
learn.microsoft.com › en-us › answers › questions › 5528386 › google-chrome-settings-and-other-apps-not-able-to
Google Chrome, settings, and other apps not able to be opened - Microsoft Q&A
Navigate to: Troubleshoot > Advanced options > Startup Settings > Restart Then choose Safe Mode with Networking. See if Chrome, Settings, and the Start menu work in this mode.
🌐
Chrome Web Store
chromewebstore.google.com › detail › settings › afcolgfopkbeailjgaablmhiemdnhlch
Settings - Chrome Web Store
This extension allows you to go to the settings of Google Chrome with just one click. Are you tired of clicking through to the Chrome browser Menu and selecting Settings to go to Google Chrome's settings page? This will open up the settings page with just one click.
🌐
Nira
nira.com › home › the 9 hidden chrome settings you should change right now
How to find and change Google Chrome settings
June 16, 2020 - To find Chrome settings type chrome://settings into the address bar. Here are 9 hidden Chrome settings you should change right now.
🌐
LG USA
lg.com › us › mobile-phones › VS985 › Userguide › 178.html
Chrome Settings
From the Chrome app, tap the Menu icon (at the upper-right corner of the screen). Tap Settings.
🌐
Business Insider
businessinsider.com › business insider › 7 chrome settings you can change to improve your browsing experience and protect your data
7 Chrome settings you can change to improve your browsing experience ...
August 23, 2022 - On the Chrome settings page, you can find a wealth of options for personalizing and optimizing how Chrome works. Open Chrome settings from the three-dot menu at the top-right of a window or type chrome://settings into the address bar.