try to take over the world!
当前为
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){document.innerHTML+="send message";}, 1);
})();