firefox disable text at bottom of window when mouseovering a URL link

AI Overview
To disable the link URL text that appears at the bottom of the window when you mouse over a link in Firefox, you must create and edit a
userChrome.css file.
Step 1: Enable customization

Type about:config into the Firefox address bar and press Enter.
Read the warning, then click Accept the Risk and Continue.
In the search box, type toolkit.legacyUserProfileCustomizations.stylesheets.
Toggle the preference to true by double-clicking it or by clicking the toggle button.

Step 2: Locate your profile folder

Click the Firefox main menu button (three horizontal lines).
Select Help, then More Troubleshooting Information.
Find the "Profile Folder" entry and click the Open Directory or Open Folder button. This will open your profile directory in your file manager.

Step 3: Create the userChrome.css file

In the profile folder, create a new folder and name it chrome (all lowercase).
Open the new chrome folder.
Inside the chrome folder, create a new text file and name it userChrome.css.
Important: Make sure the file extension is .css and not .css.txt. When saving, use a text editor like Notepad and choose Save as type: All Files (.).

Step 4: Add the CSS code

Open the newly created userChrome.css file with a text editor.
Copy and paste the following code into the file:
css

#statuspanel {
display: none !important;
}

This code targets the status panel and sets its display to "none."
Save the userChrome.css file.

Step 5: Restart Firefox

Close Firefox completely.
Restart the browser for the changes to take effect. The URL text will no longer appear when you hover over a link.