Skip to content

Instantly share code, notes, and snippets.

@CEBracco
Created August 15, 2019 14:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CEBracco/094817a3b91edf4709e36445b23bf0fd to your computer and use it in GitHub Desktop.
Save CEBracco/094817a3b91edf4709e36445b23bf0fd to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name userImportation
// @namespace http://tampermonkey.net/
// @version 0.1
// @description user function importation for universe
// @author You
// @match http://*/*
// @match https://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
document.getElementsByTagName('body')[0].style.backgroundColor = "white";
document.getElementsByTagName('body')[0].innerHTML = '<div style="width:100%,text-align:center;"><p>Holu :D</p><img src="http://giphygifs.s3.amazonaws.com/media/5ftsmLIqktHQA/giphy.gif"></div>';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment