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.
2 Likes
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.