Hi there,
During execution review there is a rating screen that its bothering me requesting a feedback, when the most important is to understand what is going on and this screen is blocking us to see the nodes. If you need a feedback please ask that in another place, also I can´t remove this stupid screen.
Totally agree with this one.
I do think someone mentioned already that it was going to be dealt with in a later version.
SOLVED: Install the chrome extension ‘Tampermonkey’. Turn on Developer Mode in Manage Extension. Open the Tampermonkey UI and add this script:
// ==UserScript==
// @name Hide Annotation Panel in n8n
// @namespace http://tampermonkey.net/
// @version 1.2
// @description Hide the annotation panel in the n8n UI for specific pages
// @author You
// @match https://tekyz.app.n8n.cloud/workflow/*
// @grant none
// ==/UserScript==
(function () {
'use strict';
// Define the regular expression for matching the URL
const urlPattern = /https:\/\/tekyz\.app\.n8n\.cloud\/workflow\/.*\/executions\/.*/;
// Check if the current URL matches the pattern
if (!urlPattern.test(window.location.href)) {
return; // Exit if the URL does not match
}
// Wait for the DOM to load and monitor changes
const observer = new MutationObserver(() => {
const annotationPanel = document.querySelector('.execution-annotation-panel');
if (annotationPanel) {
annotationPanel.style.display = 'none';
}
});
// Start observing the document body for changes
observer.observe(document.body, { childList: true, subtree: true });
})();
It works perfectly and only runs on the workflow execution page. It won’t interfere with any other pages or sites.
That’s what was said in an earlier post (Disabling the ratings UI). I updated n8n yesterday for the first time after a few months, and was surprised to see this rating UI still taking ~10% of the workflow space on the screen I work on.
There’s a thumbs up button, a thumbs down button, at least there could be a X button to just hide it, if it can’t be disabled via env variables.
You can use any ad blocker and be done with it.