Troubleshooting
The addon is not working on the Firefox
The firefox addon with Manifest V3 requires optional permissions to work well
on any website. You can find it on Permissions section of Vimmatic settings
on the about:addons page. Please make sure that the Access your data for
all websites is enabled.

Url tooltip is hiding the console
When them mouse cursor hovers over a link, a tooltip shows up in the bottom of
the screen. It can hide the console of the addon. You can remove this tooltip
by adding custom styles into userChrome.css file. Please follow the steps
below:
- Enable the
toolkit.legacyUserProfileCustomizations.stylesheetsoption in theabout:configpage. - Create
userChrome.cssfile in thechromedirectory under the profile directory. The location of theuserChrome.cssshould be<profile directory>/chrome/userChrome.css. You can find the location of the profile directory at theProfile Directorysection on theabout:supportpage. -
Add the following content into the
userChrome.cssfile:@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); #statuspanel { display: none !important; } - Restart the browser.