Dreamer

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

Dreamer क्या है?

Dreamer https://radiolights.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Dreamer is a browser extension that allows you to generate new images from any image on the web."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Dreamer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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