I've tried running this script in Chrome to change up the Google homepage logo and background but to no avail (with the Nov 16th situation). Can anyone see where I'm going wrong?
// ==UserScript==
// @name Google BG
// @author 12345
// @description Google BG
// @version 1
// @include http://*.google.*/*
// @include https://*.google.*/*
// @resource filebg nature.jpg
// @resource filelogo google.png
// ==/UserScript==
// --------------------------------------------------------------------------------------------------------------------------------
var oldLogo = document.getElementById('hplogo');
var newLogo = document.createElement('img');
newLogo.id = "User-Logo";
newLogo.border = 'no'
newLogo.src = GM_getResourceURL ("filelogo");
oldLogo.parentNode.replaceChild(newLogo, oldLogo);
// --------------------------------------------------------------------------------------------------------------------------------
//
var b = document.body;
b.style.background = '#ccc url("' + GM_getResourceURL ("filebg") + '") no-repeat top left';
b.style.backgroundSize = "100% 102%";