Prompt2Notion

Just click to save the Prompt, Image, Author, etc. from Midjourney to your Notion database

Prompt2Notion क्या है?

Prompt2Notion https://prompt2notion.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Just click to save the Prompt, Image, Author, etc. from Midjourney to your Notion database"।

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

screenshot
screenshot
screenshot

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

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

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

                        1. Add a "Save2Notion" button on Midjourney's artwork page.
2. Click the button to send the prompt, property, author, image, and web URL to your own Notion Database.
3. Optional translation of the prompt sentence by sentence.

With this Chrome extension, you can quickly save important information from Midjourney's artwork page to your Notion Database.
The "Save2Notion" button allows you to easily transfer the prompt, property, author, image, and web URL to your database with just one click. 
You also have the option to translate the prompt sentence by sentence to make it easier to understand. 
Streamline your workflow and keep all your important information organized with this handy tool.

----------------------------
v1.0.4 - 20230719
Due to midjourney's recent anti-piracy program (which prevents images from being displayed on non-midjourney sites), images previously saved in Notion get a 403 error!

So now you need to upload the image to imgur to get the new url, so that the image can be displayed properly in Notion.                    

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

नाम Prompt2Notion Prompt2Notion
ID ehipedkelpmohgomcemdocikjffheicf
आधिकारिक URL https://chromewebstore.google.com/detail/prompt2notion/ehipedkelpmohgomcemdocikjffheicf
विवरण Just click to save the Prompt, Image, Author, etc. from Midjourney to your Notion database
फ़ाइल का आकार 64.74 KB
स्थापना संख्या 426
वर्तमान संस्करण 1.0.4
अंतिम अपडेट 2023-07-20
प्रकाशन तिथि 2023-04-12
रेटिंग 3.40/5 कुल 5 रेटिंग्स
डेवलपर https://prompt2notion.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.prompt2notion.com/
सहायता पृष्ठ URL https://www.prompt2notion.com/contact/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Prompt2Notion",
    "version": "1.0.4",
    "description": "Just click to save the Prompt, Image, Author, etc. from Midjourney to your Notion database",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.midjourney.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "host_permissions": [
        "https:\/\/api.notion.com\/*",
        "https:\/\/oauth.prompt2notion.com\/*"
    ],
    "permissions": [
        "storage",
        "tabs",
        "notifications"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "action": {
        "default_icon": "img\/icon48.png",
        "default_title": "P2N Config",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "popup.html",
                "popup.js"
            ],
            "matches": [
                "https:\/\/oauth.prompt2notion.com\/*"
            ]
        }
    ]
}