UserScripts icon indicating copy to clipboard operation
UserScripts copied to clipboard

Moddb.com HD Images

Open Madnessday2006 opened this issue 2 years ago • 1 comments

I did this:

{
    "name": "Image 8 - The Thing Remaster mod for Half-Life 2 - ModDB",
    "url": "^https?://www\\.moddb\\.com/mods/the-thing-remaster/images/",
    "example": "https://www.moddb.com/mods/the-thing-remaster/images/image-8#imagebox",
    "pageElement": "#body > div.container > div.column.span-all.tabimages > div.normalbox > div.inner > div.mediaviewer.clear > div.media > div.holder > img:nth-of-type(1)",
"nextLink": "#body > div.container > div.column.span-all.tabimages > div.normalbox > div.inner > div.mediaviewer.clear > div.media > a.medianext"
}

doesn't work

Madnessday2006 avatar Feb 29 '24 00:02 Madnessday2006

Your regExp is wrong, try

"nextLinkByUrl": [
        "image-(\\d+)",
        "image-{$1-1}"
    ]

hoothin avatar Feb 29 '24 00:02 hoothin