diff options
Diffstat (limited to 'docs/blacklist.md')
-rw-r--r-- | docs/blacklist.md | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/blacklist.md b/docs/blacklist.md new file mode 100644 index 0000000..b854c07 --- /dev/null +++ b/docs/blacklist.md @@ -0,0 +1,21 @@ +--- +title: Blacklist +--- + +# Blacklist + +The blacklist allows you to disable the plugin for certain pages by URL patterns. +For instance, you could use `"*.slack.com"` to disable the plugin on all Slack channels. +In addition, you can also specify path patterns, such as `"example.com/mail/*"`. + +```json +{ + "blacklist": [ + "*.slack.com", + "example.com/mail/*" + ] +} +``` + +You can toggle Vim Vixen between disabled and enabled with +<kbd>shift</kbd>+<kbd>Esc</kbd>. |