chatGPT save history to notion

A chrome extension to save chatGPT history to notion

¿Qué es chatGPT save history to notion?

chatGPT save history to notion es una extensión de Chrome desarrollada por computers and tacos, y su función principal es "A chrome extension to save chatGPT history to notion".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión chatGPT save history to notion

Descarga archivos de extensión chatGPT save history to notion en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre chatGPT save history to notion chatGPT save history to notion
ID ddjioimofpjakfcpimdlbicbljlmfbac
URL Oficial https://chromewebstore.google.com/detail/chatgpt-save-history-to-n/ddjioimofpjakfcpimdlbicbljlmfbac
Descripción A chrome extension to save chatGPT history to notion
Tamaño del Archivo 440 KB
Cantidad de Instalaciones 132
Versión Actual 0.0.0.4
Última Actualización 2023-02-12
Fecha de Publicación 2023-01-29
Desarrollador computers and tacos
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://www.computersandtacos.com/privacy-policy-for-chatgpt-save-notion-chrome-extension
Idiomas Soportados 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": []
        }
    ]
}