Are conditionals possible to add?

Hey guys,

Is it possible to make conditionals in webscraper plugin?

I am curious whether it would be possible to combine regex & IF

Pattern:

If found exact keyword 'blue' then return blue;
&
If found exact keyword 'red' then return red;
&
If found 'red' and 'blue' then return 'red'

It would be 3 ifs

You could just use 'red|blue' as your regex pattern I think. It will first look for red and if found return red, and if not found would look for blue.