How to sourceSearch and sourceExtract with case-insensitve text

This issue is solved with the latest update: Page Not Found

For case insensitve source code search, use this regular expression:

sourceSearch | regex=/brandnames/i

Here is a sample macro that searches our home page for “busy” with and without caps:

{
  "Name": "ignore case",
  "CreationDate": "2019-9-18",
  "Commands": [
    {
      "Command": "open",
      "Target": "https://ui.vision/",
      "Value": ""
    },
    {
      "Command": "sourceSearch",
      "Target": "regex=/busY/i",
      "Value": "i"
    },
    {
      "Command": "echo",
      "Target": "i=${i}",
      "Value": "green"
    }
  ]
}