- You need to enable
chrome://flags/#extensions-on-chrome-urls
flag to be able to use extensions with Chrome internal pages - Install Custom New Tab URL extension and set the new tab page url to:
chrome://new-tab-page-third-party
- Create a custom NTP styler extension (based on the provided
manifest.json
andstyles.css
) and load it in Chrome - Enjoy!
Last active
June 6, 2025 10:06
-
-
Save fmal/2b64acc1b54b2cd017415e39f035634d to your computer and use it in GitHub Desktop.
How to get a completely blank new tab page in Chrome with bookmarks bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"manifest_version": 3, | |
"name": "My NTP Styler", | |
"version": "1.0", | |
"description": "Applies a custom CSS to the third-party new tab page.", | |
"content_scripts": [ | |
{ | |
"matches": ["chrome://new-tab-page-third-party/*"], | |
"css": ["styles.css"] | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cr-most-visited { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment