Created
December 7, 2025 15:46
-
-
Save rctneil/727d663f378a2a15a8117ff165e449ec to your computer and use it in GitHub Desktop.
Octopus Usage Bar Navigation Sticky
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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