From 1c8cef7cf673deb2c3d0c5e0b3617bf2f16d7c74 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Sun, 22 Dec 2019 15:05:05 +0900 Subject: Fix docs --- docs/blacklist.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'docs') diff --git a/docs/blacklist.md b/docs/blacklist.md index 6fede63..d1db18c 100644 --- a/docs/blacklist.md +++ b/docs/blacklist.md @@ -7,20 +7,22 @@ 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/*"`. +For instance, `"*.slack.com"` blocks the add-on on any Slack channels. +It also allows you to disable on localhost by `localhost:8000` (port is necessary). + +You can also specify path patterns to disable sites on the URL matched with the patterns. ```json { "blacklist": [ "*.slack.com", + "localhost:8000", "example.com/mail/*" ] } ``` -You can toggle Vim Vixen between disabled and enabled with -shift+Esc. +You can toggle Vim Vixen between disabled and enabled with shift+Esc. ## Partial Blacklist -- cgit v1.2.3