-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The troubleshooting resolves the following issues: - The addon is not working on the Firefox (#164) - Url tooltip is hiding the console (ueokande/vim-vixen#203)
- Loading branch information
Showing
6 changed files
with
61 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
title: Troubleshooting | ||
--- | ||
|
||
# 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. | ||
|
||
![Access your data for all websites is enables](./assets/images/Access_your_data_for_all_websites.png) | ||
|
||
## 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: | ||
|
||
1. Enable the `toolkit.legacyUserProfileCustomizations.stylesheets` option in | ||
the `about:config` page. | ||
2. Create `userChrome.css` file in the `chrome` directory under the profile | ||
directory. The location of the `userChrome.css` should be `<profile | ||
directory>/chrome/userChrome.css`. You can find the location of the profile | ||
directory at the `Profile Directory` section on the `about:support` page. | ||
3. Add the following content into the `userChrome.css` file: | ||
|
||
```css | ||
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | ||
|
||
#statuspanel { | ||
display: none !important; | ||
} | ||
``` | ||
|
||
4. Restart the browser. |