MyPrompts

Easily save, manage, and share your artificial intelligence prompts from any website with MyPrompts.

MyPrompts क्या है?

MyPrompts info.avivpaz द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily save, manage, and share your artificial intelligence prompts from any website with MyPrompts."।

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

screenshot
screenshot
screenshot

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

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

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

                        _______________________

How It Works:
- Right click on any image you want to save and choose "Save my Prompt"
- Your image, prompt and all the settings will be saved.
- Open the extension popup in order to see all of your assets

What's New:
- Allowing you to save any image online and connect prompts to it.
- See all your saved settings to replicate the asset

What's nexts:
- Save you history for 24 hours in case you forgot to save
- Get access from any device to your saved assets.
- Add collections to organise multiple assets under one subject
- Filter and sort your assets 
- Allow saving not only images but all AI generated assets

For more information or feature requests, join our Discord channel:
https://discord.gg/SEVHwZ4n                    

एक्सटेंशन की मूल जानकारी

नाम MyPrompts MyPrompts
ID nhmlimddklkdegnabfdgpkmgjbnlgjcf
आधिकारिक URL https://chromewebstore.google.com/detail/myprompts/nhmlimddklkdegnabfdgpkmgjbnlgjcf
विवरण Easily save, manage, and share your artificial intelligence prompts from any website with MyPrompts.
फ़ाइल का आकार 5.89 MB
स्थापना संख्या 107
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2023-01-31
प्रकाशन तिथि 2023-01-09
डेवलपर info.avivpaz
ईमेल [email protected]
भुगतान के प्रकार in_app
एक्सटेंशन वेबसाइट https://www.myprompts.co
सहायता पृष्ठ URL https://discord.gg/SEVHwZ4n
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1.1",
    "manifest_version": 3,
    "name": "MyPrompts",
    "description": "Easily save, manage, and share your artificial intelligence prompts from any website with MyPrompts.",
    "icons": {
        "128": "myprmopts_icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "myprmopts_icon.png"
    },
    "web_accessible_resources": [],
    "background": {
        "matches": [
            "https:\/\/beta.dreamstudio.ai\/*",
            "https:\/\/labs.openai.com\/*"
        ],
        "service_worker": "background.js"
    },
    "all_frames": false,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/beta.dreamstudio.ai\/*"
            ],
            "js": [
                "dreamstudio_content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/labs.openai.com\/*"
            ],
            "js": [
                "dalle_content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/discord.com\/channels\/662267976984297473*"
            ],
            "js": [
                "midjourney_content.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "https:\/\/discord.com\/channels\/662267976984297473*",
                "https:\/\/labs.openai.com\/*",
                "https:\/\/beta.dreamstudio.ai\/*"
            ],
            "js": [
                "general_content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus",
        "https:\/\/cdn.discordapp.com\/*"
    ]
}