Dreamer

Dreamer is a browser extension that allows you to generate new images from any image on the web.

Dreamerคืออะไร?

Dreamer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://radiolights.com และคุณลักษณะหลักของมันคือ "Dreamer is a browser extension that allows you to generate new images from any image on the web."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dreamer

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

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

                        Dreamer allows you to use the Stability.ai Stable Diffusion API to directly perform image 2 image generation inside the browser. Simply right click on any image and choose "Dream from Image" and it will generate a new image in its likeness.  You can also guide it using text and select any text in a webpage and generate an image out of it.                    

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

ชื่อ Dreamer Dreamer
ID kboadfgomgjcapbhjgcecfhmbpikehho
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dreamer/kboadfgomgjcapbhjgcecfhmbpikehho
คำอธิบาย Dreamer is a browser extension that allows you to generate new images from any image on the web.
ขนาดไฟล์ 137 KB
จำนวนการติดตั้ง 560
เวอร์ชันปัจจุบัน 0.0.11
อัปเดตครั้งล่าสุด 2023-08-15
วันที่เผยแพร่ 2022-12-20
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://radiolights.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.radiolights.com
URL หน้าช่วยเหลือ https://www.radiolights.com
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dreamer",
    "description": "Dreamer is a browser extension that allows you to generate new images from any image on the web.",
    "version": "0.0.11",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "externally_connectable": {
        "ids": [
            "*"
        ],
        "matches": [
            ""
        ]
    },
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": {
            "16": "\/images\/logo_off16.png",
            "32": "\/images\/logo_off32.png",
            "48": "\/images\/logo_off48.png",
            "128": "\/images\/logo_off128.png"
        }
    },
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "mac": "Command+Shift+Space"
            }
        }
    },
    "options_page": "options.html"
}