chatGPT save history to notion

A chrome extension to save chatGPT history to notion

chatGPT save history to notion란 무엇입니까?

chatGPT save history to notion은(는) computers and tacos에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension to save chatGPT history to notion"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

chatGPT save history to notion 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        For Notion users, link your notion account using this account's popup dialog
create a database or select an existing notion database as parent

After doing above,  use the action button with notion logo that appears on chat.openai.com and save your chat conversation with gpt to notion.

this extension converts html to markdown and markdown to notion blocks and uses notion api to save the data.

Issues or feature requests are welcome, please report them here.

Update: Major bug fixes

https://github.com/shrshk/chatGPT-save-history                    

확장 프로그램 기본 정보

이름 chatGPT save history to notion chatGPT save history to notion
ID ddjioimofpjakfcpimdlbicbljlmfbac
공식 URL https://chromewebstore.google.com/detail/chatgpt-save-history-to-n/ddjioimofpjakfcpimdlbicbljlmfbac
설명 A chrome extension to save chatGPT history to notion
파일 크기 440 KB
설치 횟수 132
현재 버전 0.0.0.4
최근 업데이트 2023-02-12
출시 날짜 2023-01-29
개발자 computers and tacos
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://www.computersandtacos.com/privacy-policy-for-chatgpt-save-notion-chrome-extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to save chatGPT history to notion",
    "version": "0.0.0.4",
    "manifest_version": 3,
    "name": "chatGPT save history to notion",
    "options_page": "options.html",
    "host_permissions": [
        "https:\/\/api.notion.com\/*",
        "https:\/\/notion.computersandtacos.com\/*"
    ],
    "permissions": [
        "storage",
        "identity",
        "background"
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "chrome_url_overrides": [],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "notion-logo.svg"
            ],
            "matches": []
        }
    ]
}