// ==UserScript==
// @name Add comment
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match *://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var body = document.body;
var comment = document.createComment('***COMMENT***');
body.appendChild(comment);
})();