-
-
Notifications
You must be signed in to change notification settings - Fork 74
Exclusions
Exclusions can be used to disable/exclude Gesturefy on certain domains via URL match patterns.
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.
-
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.