Results 444 comments of eight

You can also filter images with URL: By typing `img|gallery`, you will only select URLs including `img` and `gallery`. Another trick is to transform unwanted URLs to `about:blank` with URL...

Your URL leads to 400 error page. I tried with this URL: https://newtoki469.com/webtoon/54332306?toon=%EC%9D%BC%EB%B0%98%EC%9B%B9%ED%88%B0 and it seems to load correctly: Also try enabling this option:

Currently there is no way to map one URL to multiple URLs. So unfortunately the target URL can only be one of "1280" or "800". Is there a link pointing...

> `^(https?://[^/]+)/460(/.+)$` This regex will match all domains. Here is a more specific one: ``` ^(https?://[^/]+\.example\.com)/\d+(/.+)$ $1/1280$2 ``` `\d+` represents any numbers.