下载原始图片

一个帮你从网站下载原始尺寸图片的工具

< 脚本下载原始图片的反馈

提问/评论

§
发表于:2025-02-13

匹配bsky.app

// @match https://bsky.app/*


else if ([
'bsky.app',
].includes(hostname)) {
window.addEventListener('mouseover', ({
target
}) => {
const src = target && target.src
const parent = target.parentElement
const next = parent && parent.nextElementSibling
if (target.tagName == 'IMG' && target.width >=100 && target.height >=100 &&
!(next && next.className.includes('hx-download-original-images-tool')) &&
!/profile_images|emoji|video_thumb/g.test(src)) {
const link = src.replace(/^https:\/\/cdn\.bsky\.app\/img\/feed_thumbnail\/plain\/(did:plc:[a-z0-9]+)\/([a-z0-9]+)@(jpg|jpeg|png|gif|bmp|webp|svg|tiff)$/, 'https://bsky.social/xrpc/com.atproto.sync.getBlob?did=$1&cid=$2')
const name = src.replace(/^https:\/\/cdn\.bsky\.app\/img\/feed_thumbnail\/plain\/(did:plc:[a-z0-9]+)\/([a-z0-9]+)@(jpg|jpeg|png|gif|bmp|webp|svg|tiff)$/, '$1.$2.$3')
const style = 'margin-left: 10px;margin-top: 10px;'
const cfg = {
parent,
link,
name,
style
}
createDom(cfg)
}
})
}

发表回复

登录(不可用)以发表回复。

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址