In [this answer], there's an example on how to exclude a certain word from the search. I'm using it to filter out CSS, JS and GIF calls in the network tab of Chrome.
^((?!badword).)*$
When I play with different combinations to exclude both the string css and gif, I get results that either exclude everything or include everything.
I've tried a bunch of different combinations using the pipe operator to mimic the concept of OR. Neither work and I'm out of ideas.
How should I reason to get it working? It was surprisingly hard to find an example that excluded multiple words.