Bing Chat History
Auto-save your Bing chat history in your browser
Bing Chat History क्या है?
Bing Chat History bennyfi4 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto-save your Bing chat history in your browser"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Bing Chat History एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ID | hjhpahdglfjddhhecnjlhckicdpcdhpg |
आधिकारिक URL | 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" } } |