Dreamer

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

Dreamer란 무엇입니까?

Dreamer은(는) https://radiolights.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Dreamer is a browser extension that allows you to generate new images from any image on the web."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Dreamer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
}