Gemini Conversation Exporter

Export Gemini conversation

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Gemini Conversation Exporter
// @namespace    http://tampermonkey.net/
// @license      MIT
// @version      0.1
// @description  Export Gemini conversation
// @author       Charles Chan
// @match        https://gemini.google.com/*
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/turndown.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    let exportButton = document.createElement('button');
    exportButton.textContent = 'Export Conversation';
    exportButton.onclick = function() {
        let conversationElement = document.querySelector('chat-window');
        let conversationText = '';
        if (conversationElement) {
          	const turndownService = new TurndownService();
          	turndownService.addRule('codeblock', {
              filter: function (node) {
                return node.nodeName.toLowerCase() === 'code-block';
              },
              replacement: function (content) {
                return '```\n' + content + '\n```';
              }
            });
          	conversationText = turndownService.turndown(conversationElement.innerHTML);
        }
      
        let label = document.querySelector('.selected');
        let filename = label ? label.innerText : 'conversation';

        let blob = new Blob([conversationText], { type: 'text/markdown' });
        let url = URL.createObjectURL(blob);
        let a = document.createElement('a');
        a.href = url;
        a.download = filename + '.md';
        a.click();
    };

    let observer = new MutationObserver(function(mutations) {
        mutations.forEach(function(mutation) {
            if (mutation.addedNodes.length) {
                let toolbar = document.querySelector('.gds-label-l');
                if (toolbar) {
                  	toolbar.appendChild(exportButton);
                    observer.disconnect();
                }
            }
        });
    });

    observer.observe(document.body, { childList: true, subtree: true });
})();