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文件

下載chatGPT save history to notion擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": []
        }
    ]
}