Skip to content

Exclusions

Robbendebiene edited this page Feb 10, 2021 · 1 revision

Exclusions

Exclusions can be used to disable/exclude Gesturefy on certain domains via URL match patterns.

URL match pattern:

A match pattern is composed of: <scheme>://<host><path>, where for example

<scheme> = http or https
<host> = www.example.com or addons.mozilla.org
<path> = / or /path/to/something/

In addition to that you can use wildcards * to match any number of characters.

Examples:

  • Disable Gesturefy on mozilla.org, its subdomains and subpages:
    *://*.mozilla.org/*

  • Disable Gesturefy on addons.mozilla.org and its subpages:
    *://addons.mozilla.org/*

  • Disable Gesturefy on https://addons.mozilla.org and its subpages:
    https://addons.mozilla.org/*

  • Disable Gesturefy only on https://addons.mozilla.org/firefox/addon/gesturefy/:
    https://addons.mozilla.org/firefox/addon/gesturefy/

More information and examples can be found here.