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