Prompt2Notion

Prompt2Notion

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

Merlin
Additional files are visible only to premium users

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/*"
      ]
    }
  ]
}