I try to remove the 8 tiles with the last seen pages on the start page of Chrome. You know, the page which appears if you start Chrome.
But since there is no URL at all, I don't know what I have to enter at @match. I've tried // @match * but the script is not executed.
// ==UserScript== // @name New Userscript // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match * // @grant none // ==/UserScript== (function() { 'use strict'; setInterval(function(){ var box = document.getElementById("mv-tiles"); box.remove(); },10 ); })();
// @match *://*/_/chrome/newtab*seems to work.