ChatGPT Tools Export/Import

Export and import localStorage keys rulesProfiles and lorebookEntries

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         ChatGPT Tools Export/Import
// @namespace    ChatGPT Tools by Vishanka
// @version      1.0
// @description  Export and import localStorage keys rulesProfiles and lorebookEntries
// @author       Vishanka
// @match        https://chatgpt.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Create an export button
    const exportButton = document.createElement('button');
    exportButton.innerText = 'Export Data';
    exportButton.style.position = 'fixed';
    exportButton.style.top = '10px';
    exportButton.style.right = '10px';
    exportButton.style.zIndex = '10000';
    document.body.appendChild(exportButton);

    // Create an import button
    const importButton = document.createElement('button');
    importButton.innerText = 'Import Data';
    importButton.style.position = 'fixed';
    importButton.style.top = '50px';
    importButton.style.right = '10px';
    importButton.style.zIndex = '10000';
    document.body.appendChild(importButton);

    // Function to export data
    exportButton.addEventListener('click', () => {
        const keysToExport = ['rulesProfiles', 'lorebookEntries'];
        const exportedData = {};

        keysToExport.forEach(key => {
            if (localStorage.getItem(key)) {
                exportedData[key] = JSON.parse(localStorage.getItem(key));
            }
        });

        const blob = new Blob([JSON.stringify(exportedData, null, 2)], { type: 'application/json' });
        const url = URL.createObjectURL(blob);
        const a = document.createElement('a');
        a.href = url;
        a.download = 'exported_data.json';
        a.click();
        URL.revokeObjectURL(url);
    });

    // Function to import data
    importButton.addEventListener('click', () => {
        const input = document.createElement('input');
        input.type = 'file';
        input.accept = 'application/json';
        input.addEventListener('change', (event) => {
            const file = event.target.files[0];
            const reader = new FileReader();

            reader.onload = function(e) {
                try {
                    const importedData = JSON.parse(e.target.result);

                    Object.keys(importedData).forEach(key => {
                        if (importedData[key]) {
                            localStorage.setItem(key, JSON.stringify(importedData[key]));
                        }
                    });

                    alert('Data imported successfully!');
                } catch (error) {
                    alert('Failed to import data: Invalid JSON file.');
                }
            };

            reader.readAsText(file);
        });

        input.click();
    });
})();