Bing Chat History

Auto-save your Bing chat history in your browser

¿Qué es Bing Chat History?

Bing Chat History es una extensión de Chrome desarrollada por bennyfi4, y su función principal es "Auto-save your Bing chat history in your browser".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Bing Chat History

Descarga archivos de extensión Bing Chat History 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

                        Auto-save your Bing chat history in your browser. Review, bookmark, export, and search your past conversations with Bing chat.

To use, simply chat with Bing like you normally would and click the extension icon to view your history.

Features:
- Auto-save your Bing chat history in your browser, including footnotes
- Browse conversations by clicking on the extension icon and typing in the search box
- Export a conversation to markdown or JSON
- Share a public link for others to view your Bing conversation
- Bookmark & search conversations 

*Note: This extension does not yet support saving chats in the sidebar on Edge.

This extension is open-source and you are invited to review the code or contribute here: https://github.com/benf2004/Bing-Chat-History.                    

Información Básica de la Extensión

Nombre Bing Chat History Bing Chat History
ID hjhpahdglfjddhhecnjlhckicdpcdhpg
URL Oficial https://chromewebstore.google.com/detail/bing-chat-history/hjhpahdglfjddhhecnjlhckicdpcdhpg
Descripción Auto-save your Bing chat history in your browser
Tamaño del Archivo 347 KB
Cantidad de Instalaciones 7,804
Versión Actual 1.0.1
Última Actualización 2023-08-07
Fecha de Publicación 2023-02-26
Calificación 4.89/5 Total de 18 Calificaciones
Desarrollador bennyfi4
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://docs.aipromptgenius.app/privacy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bing Chat History",
    "description": "Auto-save your Bing chat history in your browser",
    "version": "1.0.1",
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.bing.com\/search*"
            ],
            "js": [
                "content-scripts\/utility.js",
                "content-scripts\/bing\/scraper.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content-scripts\/utility.js"
            ],
            "matches": [
                "https:\/\/www.bing.com\/*"
            ]
        }
    ],
    "action": {
        "default-title": "Bing Chat History"
    },
    "icons": {
        "16": "icons\/16x16.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    }
}