Greasy Fork

Full image from screenshoters

Opens the image itself while opening different screenshot services (you won't see their bloated webpages).

< 脚本Full image from screenshoters的反馈

提问/评论

§
发表于:2022-02-15
编辑于:2022-02-15
// @include     /^https?:\/\/prnt\.sc\/[\w\d]+$/
// @include     /^https?:\/\/skr\.sh\/[\w\d]+$/
// @include     /^https?:\/\/ibb\.co\/[\w\d]+$/
// @include     /^https?:\/\/monosnap\.com\/file\/[\w\d]+$/
// @include     /^https?:\/\/nimbusweb\.me\/nimbus\-screenshots\/[\w\d]+$/
// @include     /^https?:\/\/joxi\.ru\/[\w\d]+$/
// @exclude     /^https?:\/\/joxi\.ru\/[\w\d]+\.jpg$/

The [\w\d] is redundant, as \w already does \d in ECMAScript, it should be better/faster like this:

// @include     /^https?:\/\/prnt\.sc\/\w+$/
// @include     /^https?:\/\/skr\.sh\/\w+$/
// @include     /^https?:\/\/ibb\.co\/\w+$/
// @include     /^https?:\/\/monosnap\.com\/file\/\w+$/
// @include     /^https?:\/\/nimbusweb\.me\/nimbus\-screenshots\/\w+$/
// @include     /^https?:\/\/joxi\.ru\/\w+$/
// @exclude     /^https?:\/\/joxi\.ru\/\w+\.jpg$/
NeoCortex作者
§
发表于:2022-03-09

Thanks, I've updated the regexps.

发表回复

登录以发表回复。