Skip to content

Instantly share code, notes, and snippets.

@DioVayne
Last active December 9, 2015 10:45
Show Gist options
  • Save DioVayne/4941a0109c42ad0688cc to your computer and use it in GitHub Desktop.
Save DioVayne/4941a0109c42ad0688cc to your computer and use it in GitHub Desktop.
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();
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment