Skip to content

Instantly share code, notes, and snippets.

@pjpscriv
Last active September 15, 2025 01:31
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 Looker Studio Firefox Navigation Fix
// @namespace https://pjpscriv.com/
// @version 2025-08-26
// @description Fix the (insane) issue that Looker Studio's navigation is broken in Firefox
// @author @pjpscriv
// @match https://lookerstudio.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