Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Customize Chromium/Google Chrome error pages

How can I customize the error pages Google Chrome/Chromium displays when there is a networking error (e.g. Error 137 net::ERR_NAME_RESOLUTION_FAILED)

I'm talking about these kinds of pages: http://i41.tinypic.com/29qm8v6.png

They don't seem to be stored anywhere on the file system. Can the errors that make them display be trapped using an extension?

Thanks for any advice.

like image 907
BuyTheBid Avatar asked Nov 09 '11 21:11

BuyTheBid


People also ask

Where can I find Customize and control Google Chrome?

Open Google Chrome > in the top right, click the Customize and control Google Chrome icon, then click Settings.

What is the best way to customize Chrome?

Open the New Tab page. Select Customize Chrome or the Customize This Page (pencil) icon. Pick Color and Theme. Choose a color scheme and select Done.

How to fix Google Chrome's blank page issue?

Google Chrome’s untitled blank page issue might be due to an outdated browser build on your computer. The Chrome team regularly releases updates with new enhancements and bug fixes. Go to the Chrome Settings > About Chrome and install the new Chrome build.

How to clear cache and cookies in Google Chrome?

Step 1: Open Google Chrome and select the three-dot menu at the top. Step 2: Go to More tools > Clear Browsing data. Step 3: From the following menu, go to Advanced and select Cache and Cookies files to delete. 5. Disable Chrome Extensions Extensions play a vital role in the Chrome ecosystem.

How to fix Google Chrome not responding on Windows 10?

Step 1: Hit the Windows Key and type Task Manager. Step 2: Press Enter and open the Task Manager app for Windows 10. Step 3: Right-click on the Google Chrome process (the one with the number next to it) and select End Task. It will completely close the Chrome browser and all its related services.

How to fix 'Aw snap' error in Google Chrome?

The browser will throw an ‘Aw, Snap!’ error whenever you try to load a webpage. It means Chrome is having problems loading the page. You can move to the address bar and at the top-left, click the Reload button to refresh the page. 2. Check Internet Connection


1 Answers

No, trapping is not possible, and the HTML for the error pages gets built at runtime from compiled resources. See http://src.chromium.org/viewvc/chrome/trunk/src/chrome/renderer/localized_error.cc?view=markup for the code that builds these error pages.

like image 164
Alexander Pavlov Avatar answered Sep 20 '22 14:09

Alexander Pavlov