// ==UserScript== // @name mercari watcher // @namespace http://hitoriblog.com/ // @version 0.1 // @description try to take over the world! // @author moyashi // @match https://www.mercari.com/jp/search/* // @grant none // ==/UserScript== (function() { 'use strict'; function update (){ location.reload(); } $(document).ready(function(){ $(function(){ setTimeout(function(){ update(); // 1000 * 60 * 5 },300000); }); }); })();