Software Features: Configuration Options > Capture Links > Regular Expression Links
There is a piece of JSON code in the HTML code.
The homepage uses regular expressions for matching:"url": "Link address 1" and "url": "Link address 2"Then enclose the link part in parentheses, where the parenthesized part is the group 1 of the regular expression.
The final regular expression is:"url"[: ]+"([^"]*?)"
The captured link is:Link address 1 and Link address 2
