New Userscript

try to take over the world!

目前为 2016-06-13 提交的版本,查看 最新版本

// ==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);
})();