Skip to content

Instantly share code, notes, and snippets.

@rctneil
Created December 7, 2025 15:46
Show Gist options
  • Select an option

  • Save rctneil/727d663f378a2a15a8117ff165e449ec to your computer and use it in GitHub Desktop.

Select an option

Save rctneil/727d663f378a2a15a8117ff165e449ec to your computer and use it in GitHub Desktop.
Octopus Usage Bar Navigation Sticky
// ==UserScript==
// @name Octopus Usage Bar Navigation Sticky
// @namespace http://tampermonkey.net/
// @version 2025-12-07
// @description To make it easy to navigate between time periods without scrolling up and down!
// @author rctneil
// @match https://octopus.energy/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=octopus.energy
// @grant none
// ==/UserScript==
(function() {
document.head.append(Object.assign(document.createElement("style"), {
type: "text/css",
textContent: `.HjMce {
position: sticky;
top: 54px;
z-index: 49;
background-color: #0d012e;
}`
}))
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment