Last active
August 29, 2015 14:00
-
-
Save pastak/11374416 to your computer and use it in GitHub Desktop.
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 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