Bluesky Image/Video Download Button

Adds a download button to Bluesky images and videos. Built off coredumperror's script with a few improvements.

< 脚本 Bluesky Image/Video Download Button 的反馈

提问 / 留言

§
发布于:2025-07-02

Hi, I was wondering if you could add support for having the post text in the filename. Doing this is surprisingly simple, change L250 to this:

const ariaElem = element.closest("[aria-label]");
const title = ariaElem.getAttribute("aria-label").replace(/[/\\?%*:|"<>]/g, '-');

const data = {
    uname: uname,
    username: username,
    postId: postId,
    timestamp: timestamp,
    imageNumber: imageNumber,
    isVideo: isVideo,
    title: title
};

And add .replace("<%title>", data.title); to L293.

KanashiiWolf作者
§
发布于:2025-07-02

Added in v1.8.5! If only JS could alter EXIF data, because I feel like this would be the perfect use case.

发布留言

登录以发布留言。