chatGPT save history to notion

A chrome extension to save chatGPT history to notion

O que é chatGPT save history to notion?

chatGPT save history to notion é uma extensão do Chrome desenvolvida por computers and tacos, e sua principal característica é "A chrome extension to save chatGPT history to notion".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão chatGPT save history to notion

Baixe arquivos de extensão chatGPT save history to notion no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome 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
Descrição A chrome extension to save chatGPT history to notion
Tamanho do Arquivo 440 KB
Contagem de Instalações 132
Versão Atual 0.0.0.4
Última Atualização 2023-02-12
Data de Publicação 2023-01-29
Desenvolvedor computers and tacos
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://www.computersandtacos.com/privacy-policy-for-chatgpt-save-notion-chrome-extension
Idiomas Suportados 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": []
        }
    ]
}