Last active
March 20, 2026 15:59
-
-
Save furmur/8b5d4ff51998a29a4e9fa141ba0668ec to your computer and use it in GitHub Desktop.
hide jira/confulence slop.
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
| /* ==UserStyle== | |
| @name hide slop | |
| @version 1.0.0 | |
| @license Other | |
| @description remove ads/slop from jira/confluence web ui | |
| @author furmur | |
| ==/UserStyle== */ | |
| @-moz-document regexp("https://.*\\.atlassian\\.net/.*") { | |
| /* | |
| based on https://gist.github.com/dandean/97da65730ac2cb6ebc3fbb19ebe46744#file-confluence-user-css | |
| extension: https://addons.mozilla.org/en-US/firefox/addon/styl-us/ | |
| */ | |
| /* Hide the prompt to use Rovo on the line you are editing */ | |
| .placeholder-decoration { | |
| display: none; | |
| } | |
| /* Hide rovo in the menu bar */ | |
| [data-testid="atlassian-navigation.ui.conversation-assistant.app-navigation-ai-mate"] { | |
| display: none; | |
| } | |
| [data-testid="app-navigation-ai-mate"] { | |
| display: none; | |
| } | |
| /* Hide rovo button in the bottom right of normal pages */ | |
| [data-testid="layout-controller.ui.bottom-right-corner.container.styled-container"] > div:last-child { | |
| display: none; | |
| } | |
| [data-testid="object-sidebar-container"] > div:last-child { | |
| display: none; | |
| } | |
| /* Hide button in the text edit field */ | |
| [data-testid="atlassian-intelligence-toolbar-button"] { | |
| display: none; | |
| } | |
| /* Hide rovo button in the bottom right of whiteboards */ | |
| div:has(> #rovo-button-onboarding-spotlight) { | |
| display: none; | |
| } | |
| /* Hide the rovo UI from the selection toolbar */ | |
| [aria-label="Selection toolbar"] > div:first-child { | |
| display: none; | |
| } | |
| /* Hide the Ask Rovo button when text is selected */ | |
| [role="presentation"]:has(> [data-testid*="-rovo"]) { | |
| display: none; | |
| } | |
| /* Hide the Ask Rovo button in issue create form */ | |
| [data-testid="editor-toolbar__ask-rovo"] { | |
| display: none; | |
| } | |
| /* Hide confluence ads */ | |
| [data-testid="issue-view-common-views.placeholder-template-main-container"] { | |
| display: none; | |
| } | |
| [data-testid="issue-view-common-views.placeholder-template-header"] { | |
| display: none; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment