1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-07 05:43:37 +12:00
0 How to "allow all" in uMatrix
Raymond Hill edited this page 2017-11-23 10:25:47 -05:00

I see often users asking how to "allow all" in NoScript. So I will address the same question here but for uMatrix.

There are four ways to "allow all" in uMatrix. I will present them in order of gentleness, from the less scary way of allowing all to the most scary way of allowing all.

First, an example page, this is what you would get when using uMatrix with default settings:

a

Note: the example page above could be read all fine with no need to allow all, I just use this one page for tutorial purpose.

Local soft allow-all

Create a local allow rule for the all cell:

a
Screenshot shows result of reloading the page after the allow rule was set. Note that gstatic.com appeared in the matrix, and the allow rule from the all cell did propagate to this newly seen domain.

This way the allow rule applies only in the local scope, nowhere else. Assigning an allow rule to the all cell is a soft allow-all, because no narrower block rules will be overriden as a result, i.e. all the block rules imported from the hosts file will still be enforced.

Note that due to the propagation logic of rules in uMatrix, an allow rule on the all cell propagate to all non-blacklisted cells in the matrix, so that if you reload the page, the allow rule will also propagate to newly seen network requests for which there is no explicit block rule.

Local hard allow-all

A local hard allow-all will completely disable matrix filtering, but only for the local scope:

a
Screenshot shows result of reloading the page after matrix filtering was disabled.

Note that in such case, this will also disable all the block rules imported from the hosts file, which is the equivalent of almost completely disabling uMatrix, but at least only for the current scope.

Important: keep in mind that the per-scope switches are independent of the matrix filtering switch, you may also need/want to turn them off.

Global soft allow-all

Create a global allow rule for the all cell (notice the global scope is selected in the picture):

a

Same behavior as "local allow-all", except that now it applies to all scopes, i.e. web pages loaded from wherever will all be in soft allow-all mode.

Keep in mind though that all narrower block rules will not be overridden, as per uMatrix rule propagation logic, so all block rules from hosts files will still be enforced everywhere, and also all your block rules will still be enforced.

Global hard allow-all

Disable matrix filtering while in the global scope (notice the global scope is selected in the picture):

b

The matrix filtering switch is just like any other rule, its state propagates to narrower scopes. So disabling matrix filtering in the global scope is almost equivalent to disabling completely uMatrix on all sites.

Reminders

A reminder that all rules (matrix or switches) are temporary by default. So in the examples above, one would simply click the "Revert all temporary changes" button in the popup panel to remove all these allow-all rules and put back uMatrix in its original state.

Also, I want to reiterate and emphasize that all rules (matrix or switches) in uMatrix propagate to narrower scopes, unless a more explicit rule is encountered on the way down to narrower scopes.

This means that it's entirely possible for uMatrix to work in "reverse mode", in which uMatrix does not filter anything by default, and one would enable uMatrix only for specific site. Of course I do not expect power users to ever work this way, but this is just to again emphasize the rule propagation logic inherent to uMatrix.