# HG changeset patch # User nanaya # Date 1673792013 -32400 # Node ID 42fbeb68c0e5c10791ffda79ffcbcf808bddf08a # Parent 6b354277f2d1211821785a3217181c41bbdae932 Product id may contain uppercase letters diff -r 6b354277f2d1 -r 42fbeb68c0e5 surugaya-fixes.user.js --- a/surugaya-fixes.user.js Sun Jan 08 00:02:28 2023 +0900 +++ b/surugaya-fixes.user.js Sun Jan 15 23:13:33 2023 +0900 @@ -1,7 +1,7 @@ // ==UserScript== // @name suruga-ya fixes // @namespace https://myconan.net -// @version 2.0.0 +// @version 2.0.1 // @description Show all products with fast image // @author nanaya // @match https://www.suruga-ya.jp/* @@ -24,7 +24,7 @@ // skip loading image through php which seems to take forever ;(function () { - const itemImageRegexp = /photo\.php\?shinaban=(\d+)/ + const itemImageRegexp = /photo\.php\?shinaban=([0-9A-Z]+)/ function fix (image) { const origSrc = image.getAttribute('src') if (origSrc == null) return