Prompt2Notion
Just click to save the Prompt, Image, Author, etc. from Midjourney to your Notion database
Prompt2Notion란 무엇입니까?
Prompt2Notion은(는) https://prompt2notion.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Just click to save the Prompt, Image, Author, etc. from Midjourney to your Notion database"입니다.
확장 프로그램 스크린샷
Prompt2Notion 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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\/*" ] } ] } |