containerise icon indicating copy to clipboard operation
containerise copied to clipboard

suggestion - exclude from container

Open elesto opened this issue 2 years ago • 2 comments

Add rule that excludes url from container. Example:

My example google container:

Allow: *.google.com
Exclude: *.google.com/search*

elesto avatar Jan 10 '22 18:01 elesto

@elesto I wanted something similar. I did the following.

I used a glob for the common case (!*.google.com in container 1) I used specific urls for the exceptions (www.google.com and maps.google.com in container 2)

That worked for me.

Edit: I thought this was not working for me but it is. I had left the "Limit to Designated Sites" setting on for one of the containers. Having turned that off it now works perfectly.

crantok avatar May 29 '22 19:05 crantok

You can use regex for that:

@^https?://([a-z0-9-]+\.)*google(\.[a-z]+)+/(?!search) , Google

Alexey104 avatar Oct 18 '22 21:10 Alexey104