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"입니다.
확장 프로그램 스크린샷
Bing Chat History 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |