containerise
containerise copied to clipboard
suggestion - exclude from container
Add rule that excludes url from container. Example:
My example google container:
Allow: *.google.com
Exclude: *.google.com/search*
@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.
You can use regex for that:
@^https?://([a-z0-9-]+\.)*google(\.[a-z]+)+/(?!search) , Google