diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2019-12-22 15:13:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-22 15:13:55 +0900 |
commit | 750be0263207b1275ae3911b5585343b49de2645 (patch) | |
tree | b635290335c2db71a6723eb7759c84bcf33a34ff /docs | |
parent | 896c2cf60d009c9b12d99a394287cfb1d5ee1e3a (diff) | |
parent | 1c8cef7cf673deb2c3d0c5e0b3617bf2f16d7c74 (diff) |
Merge pull request #691 from ueokande/enable-addon-on-blacklisted-sites
Enable addon on blacklisted sites
Diffstat (limited to 'docs')
-rw-r--r-- | docs/blacklist.md | 10 |
1 files changed, 6 insertions, 4 deletions
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 -<kbd>shift</kbd>+<kbd>Esc</kbd>. +You can toggle Vim Vixen between disabled and enabled with <kbd>shift</kbd>+<kbd>Esc</kbd>. ## Partial Blacklist |