Instead of a thousand words (screenshot):
In the first case (on the left) the link to the page is through an extension, in the second - a direct link to the same local page.
The meaning of the mini-extension is to put your custom page on a new opening tab. Clicked a new tab, a tab opens with an already open page. Here is manifest.json:
{ "manifest_version": 2, "name": "test", "version": "1.0", "chrome_url_overrides": { "newtab": "index.html" }, "icons": { "16": "16x16.png" }, "browser_action": { "default_icon": "16x16.png" } } and a page referring to a file named index.html for example
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>test</title> <link href="16x16.png" rel="SHORTCUT ICON"/> </head> <body> teeeeeeeeeeeeeeest </body> </html> Why? Why it happens? And how to overcome it? Google, but somehow difficult to formulate a question. Please understand and forgive for such a question, probably no one else will come in handy. Very much upset the lack of favicon .. (
newtabpage doesn’t have a favicon by default. You can try it with anewtab. - qwertetnewtabpage. I hope you can live without it;) - qwertet