Extend the movie database to include people, movies and companies (studios), allow link with just the id.
TMDB has links to companies.
https://www.themoviedb.org/company/7840/movie
^(https?:\/\/(?:www\.)?themoviedb\.org\/(?:person|movie|company)\/\d+)
and Studio added to "Valid targets”
The regex is slightly different as it does not require the - after as a performer would be something like the following
Any way for a change to the regex and the valid targets?
TMDB is now using the slugs after the id
The regex then just needs the company,
^(https?://(?:www.)?themoviedb.org/(?:person|movie|company)/\d±[^/?#]+)
and studio is a valid target