Skip to content

Instantly share code, notes, and snippets.

@pjpscriv
Last active June 15, 2026 02:36
Show Gist options
  • Select an option

  • Save pjpscriv/ddd9a49ad6dd05c11afd946a040d028f to your computer and use it in GitHub Desktop.

Select an option

Save pjpscriv/ddd9a49ad6dd05c11afd946a040d028f 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-14
// @description Fix the (insane) issue that Google Data Studio's navigation is broken in Firefox
// @author @pjpscriv
// @match https://datastudio.google.com/*
// @icon https://www.gstatic.com/analytics-lego/png/ic_data_studio.png
// @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);
})();
@Adam81

Adam81 commented Jun 8, 2026

Copy link
Copy Markdown

Forked to adjust to "Data Studio" - Great fix, thanks!

@pjpscriv

Copy link
Copy Markdown
Author

@Adam81 good catch! Updated here now too ☺️

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment