chatGPT save history to notion

A chrome extension to save chatGPT history to notion

Co je chatGPT save history to notion?

chatGPT save history to notion je rozšíření Chrome vyvinuté computers and tacos, a jeho hlavní funkcí je „A chrome extension to save chatGPT history to notion“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření chatGPT save history to notion

Stáhněte si soubory rozšíření chatGPT save history to notion ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název chatGPT save history to notion chatGPT save history to notion
ID ddjioimofpjakfcpimdlbicbljlmfbac
Oficiální URL https://chromewebstore.google.com/detail/chatgpt-save-history-to-n/ddjioimofpjakfcpimdlbicbljlmfbac
Popis A chrome extension to save chatGPT history to notion
Velikost souboru 440 KB
Počet instalací 132
Aktuální Verze 0.0.0.4
Poslední Aktualizace 2023-02-12
Datum Vydání 2023-01-29
Vývojář computers and tacos
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://www.computersandtacos.com/privacy-policy-for-chatgpt-save-notion-chrome-extension
Podporované Jazyky 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": []
        }
    ]
}