I'm trying to provide a link to chrome://newtab
(the new tab page) for my distraction-preventing page for when I need to access it, however clicking the link gives the error Failed to load resource
.
I've tried:
- Linking to it using
<a href="chrome://newtab">
- Attempting to redirect the user using
window.location
. - The
chrome:
prefix aliases tochrome://
but still fails to load.
Does anyone know if this is possible or has any ideas to try?