Bing Chat History

Auto-save your Bing chat history in your browser

什麼是Bing Chat History?

Bing Chat History是由bennyfi4開發的Chrome擴展程式,該擴展的主要功能是“Auto-save your Bing chat history in your browser”。

擴展截圖

screenshot
screenshot

下載Bing Chat History擴展crx文件

下載Bing Chat History擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Bing Chat History Bing Chat History
ID hjhpahdglfjddhhecnjlhckicdpcdhpg
官方網址 https://chromewebstore.google.com/detail/bing-chat-history/hjhpahdglfjddhhecnjlhckicdpcdhpg
簡介 Auto-save your Bing chat history in your browser
檔案大小 347 KB
安裝次數 7,804
目前版本 1.0.1
更新時間 2023-08-07
上架時間 2023-02-26
評分 4.89/5 共 18 次評分
開發者 bennyfi4
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://docs.aipromptgenius.app/privacy
支援的語言 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"
    }
}