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ファイルをダウンロード

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
Eメール [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"
}