Is there a way to not display the popup when hovering over a bullet?

Hi guys!
I wonder if there is a way to prevent this “Created…” popup:

2020-09-25_22-25-28

How I can access its properties using custom CSS to make it transparent at least?

1 Like

I finally got rid of this using custom JS code.
I’m using the Codify extension for Chrome to remove the title attribute for all bullets:

setTimeout(() => {
    setInterval(() => {
        Array.from(document.getElementsByClassName('Node-bullet')).forEach(elem => elem.removeAttribute('title'));
    }, 1000);
}, 5000);

It’s probably a clumsy solution, but it works.

2020-10-18_12-24-22