if (window.chrome && window.chrome.app && window.chrome.app.isInstalled) {
  window.addEventListener("beforeload", function () {
    if (!event.url.match(/^http:\/\/[^.]+.googlesyndication.com\//i))
      return;
    event.preventDefault();
  }, true);
}

