dio-v
12/9/2015 - 7:13 AM

Google logo changes into God

Google logo changes into God

// ==UserScript==
// @name         Google God
// @namespace    http://diovayne.nl/
// @version      0.1
// @description  Always watching.
// @author       Dio Vayne
// @match        https://www.google.nl/*
// @grant        none
// @require http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';
    $('#hplogo').fadeOut(function(){
      $(this).css('background-image','url(http://i.imgur.com/6oaHP3S.png)').fadeIn();
    });
})();