Last active
December 9, 2015 10:45
-
-
Save DioVayne/4941a0109c42ad0688cc to your computer and use it in GitHub Desktop.
Google logo changes into God
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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(); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment