MyPrompts

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

MyPrompts là gì?

MyPrompts là một tiện ích mở rộng Chrome được phát triển bởi info.avivpaz, và tính năng chính của nó là "Easily save, manage, and share your artificial intelligence prompts from any website with MyPrompts.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng MyPrompts

Tải xuống các tệp mở rộng MyPrompts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        _______________________

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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MyPrompts MyPrompts
ID nhmlimddklkdegnabfdgpkmgjbnlgjcf
URL Chính Thức https://chromewebstore.google.com/detail/myprompts/nhmlimddklkdegnabfdgpkmgjbnlgjcf
Mô tả Easily save, manage, and share your artificial intelligence prompts from any website with MyPrompts.
Kích Thước Tệp 5.89 MB
Số Lần Cài Đặt 107
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2023-01-31
Ngày Phát Hành 2023-01-09
Nhà Phát Triển info.avivpaz
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://www.myprompts.co
URL Trang Trợ Giúp https://discord.gg/SEVHwZ4n
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}