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 ExchangeVideos
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!
Here’s a very simple AutoHotkey solution:
WinActivate Chrome
send ^t
sleep 100
sendraw chrome://settings/ ; any URL works
sleep 100
send {enter}
This could be a DPI issue. Please see the suggestions in the following threads:
https://support.google.com/chrome/thread/48361981?msgid=52353936https://support.google.com/chrome/thread/49617169/chrome-menu-appearing-off-screen?hl=en
Meanwhile, you can open settings by typing chrome://settings in the address bar. Or press Ctrl + Shift +Del, which takes you to chrome://settings/privacy.
Hi Paola. My name is Lester, and I am an Independent Advisor. I'm sorry that you are experiencing this issue. I'd be more than happy to assist you.
What changes did you make before the issue if any?
To avoid repetition, what troubleshooting steps have you tried so far? Thank you.
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?