fetzeck / Google boob

// ==UserScript==
// @name         Google boob
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Google Boobs
// @author       You
// @match        https://www.google.com/*
// @grant        none
// @require      https://code.jquery.com/jquery-3.3.1.min.js
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';

  $("head").append("<style>#boobLogo{width: 20%;margin-top: -70px;} #boobLogoSmall{width: 90%;margin: -30px 0 0 5px;} #logocont{width: 20%;height: 121px;overflow: hidden;margin: 0;padding: 0;top: -16px;position: absolute;left: 0;}</style>");

  $("#hplogo").after("<img id='boobLogo' src='https://preview.ibb.co/c8ZU1K/g_gle.png'></img>");
  $("#hplogo").hide();

  $("#logo").after("<img id='boobLogoSmall' src='https://preview.ibb.co/c8ZU1K/g_gle.png'></img>");
  $("#logo").hide();
})();