Skip to content

Instantly share code, notes, and snippets.

@pastak
Last active August 29, 2015 14:00
Show Gist options
  • Save pastak/11374416 to your computer and use it in GitHub Desktop.
Save pastak/11374416 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name KMC_JS_001_Background_Changer
// @include *
// ==/UserScript==
var url = location.host;
if(url === 'google.com'){
var img = 'http://k.yimg.jp/images/top/sp2/cmn/logo-ns-131205.png';
}else if((/yahoo/).test(url))
var img = 'http://blogoscoped.com/files/logo-template/1.gif';
}else{
var img = 'http://cdn.wegotthiscovered.com/wp-content/uploads/new-microsoft-logo-600.jpg';
}
document.body.style.background = 'url("' + img + '")';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment