Fingal / Getting Started with a User Script

// ==UserScript==
// @namespace     https://openuserjs.org/users/Fingal
// @name          Getting Started with a User Script
// @description   Showing the current basic and recommended format for a User script.
// @copyright     2017, Fingal (https://openuserjs.org/users/Fingal)
// @license MIT
// @version       0.0.0
// @include         http://www.google.*
// @include         https://www.google.*
// @include         https://encrypted.google.*
// @run-at          document-start
// @grant           GM_xmlhttpRequest
// ==/UserScript==

// ==OpenUserJS==
// @author Fingal
// ==/OpenUserJS==

/**
  *
  * Please begin typing or paste your User script now.
  *
  */
  (function() {
    'use strict';
    document.querySelectorAll('body')[0].innerHTML = "TEST";
    // Your code here...
})();