Skip to content

Instantly share code, notes, and snippets.

@vincevargadev
Created May 5, 2018 19:42
Show Gist options
  • Save vincevargadev/deed07c13d49d1e61c7519333a6c03d9 to your computer and use it in GitHub Desktop.
Save vincevargadev/deed07c13d49d1e61c7519333a6c03d9 to your computer and use it in GitHub Desktop.
Remove most visited sites from new tab screen on Google Chrome
// I'm going to create an extension to get rid of the most visited list upon opening a new tab or window in Google Chrome
// TODO: add it to extension, run it on all pages and make sure it won't break totally if the ID changes
if (window.location.pathname === '/_/chrome/newtab') { document.getElementById('most-visited').remove(); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment