New Userscript

try to take over the world!

Від 13.06.2016. Дивіться остання версія.

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