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
官方網址 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"
}