Dreamer

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

Co to jest Dreamer?

Dreamer to rozszerzenie Chrome opracowane przez https://radiolights.com, a jego główną funkcją jest „Dreamer is a browser extension that allows you to generate new images from any image on the web.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Dreamer

Pobierz pliki rozszerzeń Dreamer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Dreamer Dreamer
ID kboadfgomgjcapbhjgcecfhmbpikehho
Oficjalny URL https://chromewebstore.google.com/detail/dreamer/kboadfgomgjcapbhjgcecfhmbpikehho
Opis Dreamer is a browser extension that allows you to generate new images from any image on the web.
Rozmiar pliku 137 KB
Liczba instalacji 560
Aktualna Wersja 0.0.11
Ostatnia Aktualizacja 2023-08-15
Data Publikacji 2022-12-20
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper https://radiolights.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.radiolights.com
Adres URL Strony Pomocy https://www.radiolights.com
Obsługiwane Języki 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"
}