载入页面后自动刷新一次

try to take over the world!

// ==UserScript==
// @name         载入页面后自动刷新一次
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       抄的
// @match        https://keep.google.com/*
// @grant        none
// ==/UserScript==
window.onload = function(){
    if(location.href.indexOf('#reloaded')==-1){
    location.href=location.href+"#reloaded";
    location.reload();
    }
    }