Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Adam81/03bf2ef122c9eaa842e5bfc03a2b530a to your computer and use it in GitHub Desktop.

Select an option

Save Adam81/03bf2ef122c9eaa842e5bfc03a2b530a to your computer and use it in GitHub Desktop.
Temporary solution for https://discuss.google.dev/t/191869
// ==UserScript==
// @name Data Studio Firefox Navigation Fix
// @namespace https://pjpscriv.co.nz
// @version 2026-06-08
// @description Fix the (insane) issue that Looker Studio's navigation is broken in Firefox
// @author @pjpscriv
// @match https://datastudio.google.com/*
// @icon https://www.gstatic.com/analytics-lego/svg/ic_looker_studio.svg
// @grant none
// ==/UserScript==
(function() {
'use strict';
const intervalId = setInterval(() => {
const nav = document.querySelector('.top-page-navigation');
if (nav) {
nav.setAttribute('style', 'top: 36px;');
console.log('[USERSCRIPT] Applied Looker Studio Firefox Navigation Fix');
clearInterval(intervalId);
}
}, 50);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment