--- GooglePlus.user.js 2012-11-05 15:37:14.361963982 +0100 +++ GooglePlus.user.js.new 2012-11-05 15:37:24.633963882 +0100 @@ -109,10 +109,12 @@ selfTest(); } -if (isCorrectPage()) { - Unity.init({ name: "Google+", - domain: 'plus.google.com', - homepage: 'https://plus.google.com/', - iconUrl: "icon://unity-webapps-google-plus", - onInit: wrapCallback(messagingIndicatorSetup) }); -} +setTimeout(wrapCallback(function wait() { + if (isCorrectPage()) { + Unity.init({ name: "Google+", + domain: 'plus.google.com', + homepage: 'https://plus.google.com/', + iconUrl: "icon://unity-webapps-google-plus", + onInit: wrapCallback(messagingIndicatorSetup) }); + } +}), 2000);