@okamototk, fez um ótimo trabalho para tornar a bolha de favoritos do Google mais compatível com outros dispositivos. Obtenha seu código aqui: https://github.com/okamototk/jqm-mobile-bookmark-bubble .
É muito fácil anexar o ouvinte de eventos e definir um parâmetro hash, para que a bolha não incomode seus usuários. O exemplo a seguir carregará a bolha 1 segundo após o carregamento da página se o hash não existir em localStorage.
window.addEventListener('load', function() {
window.setTimeout(function() {
var bubble = new google.bookmarkbubble.Bubble();
var parameter = 'popup_bubble';
bubble.hasHashParameter = function() {
return window.localStorage[parameter];
};
bubble.setHashParameter = function() {
if (!this.hasHashParameter()) {
window.localStorage[parameter] = 1;
}
};
bubble.showIfAllowed();
}, 1000);
}, false);