DALL-E 2 Image Downloader

Adds a button to the DALL·E 2 web app that lets you download generated images along with the prompt that generated them.

DALL-E 2 Image Downloaderคืออะไร?

DALL-E 2 Image Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aron Adler และคุณลักษณะหลักของมันคือ "Adds a button to the DALL·E 2 web app that lets you download generated images along with the prompt that generated them."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DALL-E 2 Image Downloader

ดาวน์โหลดไฟล์ส่วนขยาย DALL-E 2 Image Downloader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        KNOWN LIMITATIONS

If the prompt input field has been edited or cleared after generating the images or after navigating back to a previous task, the zip folder name will take that edited version of the prompt instead of the original one that was actually used to generate the images.

Unfortunately the page HTML contains no other reference to the prompt that generated the images. The page title was an option, but it doesn't update when you navigate to a previously generated prompt. So the prompt input field is the best we can do.

DESCRIPTION

The problem

DALL·E 2 is an incredible achievement. It displays creativity never before seen in a ML system. But the UI only lets you view the 50 most recent prompts and generated image sets. Anything more than 50 tasks ago is lost. Currently if you want to save the images you've generated you have to download each image one by one. And if you want to remember which prompt generated these images you have to make a note of that yourself, and how to link which prompts generated which images becomes a tedious exercise in manual organisation and file renaming.

The solution

This extension creates a button in the bottom left hand corner of the page that, when clicked, downloads all the current prompt's images in a zip folder, whose filename is the prompt that generated them. You can now save your prompt and its generated images in a single click.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DALL-E 2 Image Downloader DALL-E 2 Image Downloader
ID mahfoodbmalcmkhbljjjkkbieekaeiak
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dall-e-2-image-downloader/mahfoodbmalcmkhbljjjkkbieekaeiak
คำอธิบาย Adds a button to the DALL·E 2 web app that lets you download generated images along with the prompt that generated them.
ขนาดไฟล์ 182 KB
จำนวนการติดตั้ง 1,599
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2022-10-01
วันที่เผยแพร่ 2022-07-18
คะแนน 4.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา Aron Adler
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Arrow7000/dall-e-downloader
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DALL-E 2 Image Downloader",
    "description": "Adds a button to the DALL\u00b7E 2 web app that lets you download generated images along with the prompt that generated them.",
    "version": "0.0.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.openai.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    }
}