@CatHypno
Maybe we should start from the beginning and go through this one by one:
The rule I've posted works on URLs that go to
single posts and it will extract the individual images/videos.
Before doing anything we should make sure that the rule is still working. Websites can change at any point of time, rendering such rules/scripts/plugins useless

Example for such a single post:
fapello.com/jennifer-lopez/507/
As we can see it looks like the rule is returning only broken links while that image is clearly available and should be downloadable.
The direct URL to that picture is:
fapello.com/content/j/e/jennifer-lopez/1000/jennifer-lopez_0507.jpg
-> Immediately I see that the "deepPattern" of that rule does not allow links with "j" but only with "i" so we'll update the pattern in that rule accordingly:
Code:
"deepPattern": "\"(**External links are only visible to Support Staff**j|l|k)/[^\"]+)|[^\"]+\\.mp4)",
Now that rule should work and you can continue testing and update it until it's working for all single post URLs.
Next step:
You seem to be wanting to crawl complete profiles.
While you can add a profile URL and the JDownloader deep-parser will find some single post URLs which will then be handled by said rule, JDownloader will only find all posts of the first page since it does not have a crawler for this website.
In this case I'd recommend the following method(s) to collect all single post links and let the LinkCrawler rule do the rest then:
https://support.jdownloader.org/Know...orted-websites
I'll soon add a followup post to this one in which I will try to improve said LinkCrawler rule even further.