Dreamer

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

Cos'è Dreamer?

Dreamer è un'estensione di Chrome sviluppata da https://radiolights.com, e la sua funzione principale è "Dreamer is a browser extension that allows you to generate new images from any image on the web.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Dreamer

Scarica i file di estensione Dreamer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Dreamer Dreamer
ID kboadfgomgjcapbhjgcecfhmbpikehho
URL Ufficiale https://chromewebstore.google.com/detail/dreamer/kboadfgomgjcapbhjgcecfhmbpikehho
Descrizione Dreamer is a browser extension that allows you to generate new images from any image on the web.
Dimensione del File 137 KB
Conteggio Installazioni 560
Versione Corrente 0.0.11
Ultimo Aggiornamento 2023-08-15
Data di Pubblicazione 2022-12-20
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore https://radiolights.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.radiolights.com
URL della Pagina di Aiuto https://www.radiolights.com
Lingue Supportate 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"
}