Ai4Privacy - Privacy feature for ChatGPT
Ai4Privacy Extension helps protect personal data with ChatGPT AI interactions, anonymising sensitive info for secure AI usage.
Ai4Privacy - Privacy feature for ChatGPT란 무엇입니까?
Ai4Privacy - Privacy feature for ChatGPT은(는) https://ai4privacy.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Ai4Privacy Extension helps protect personal data with ChatGPT AI interactions, anonymising sensitive info for secure AI usage."입니다.
확장 프로그램 스크린샷
Ai4Privacy - Privacy feature for ChatGPT 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Enhance your privacy protection while using AI language models with Ai4Privacy, a cutting-edge Chrome extension in beta. Developed to help you maintain confidentiality and security, our solution aims to minimize the exposure of your sensitive data during AI-powered interactions. Experience a more secure and private browsing experience by trying our free extension today!
확장 프로그램 기본 정보
이름 | Ai4Privacy - Privacy feature for ChatGPT |
ID | lommhelddgnkakmpabmpipkebhejihgm |
공식 URL | https://chromewebstore.google.com/detail/ai4privacy-privacy-featur/lommhelddgnkakmpabmpipkebhejihgm |
설명 | Ai4Privacy Extension helps protect personal data with ChatGPT AI interactions, anonymising sensitive info for secure AI usage. |
파일 크기 | 46.5 MB |
설치 횟수 | 103 |
현재 버전 | 2.0.1 |
최근 업데이트 | 2023-12-11 |
출시 날짜 | 2023-05-04 |
평점 | 4.98/5 총 40 개의 평점 |
개발자 | https://ai4privacy.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://ai4privacy.com/ |
도움말 페이지 URL | https://ai4privacy.com/customer-support/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ai4Privacy - Privacy feature for ChatGPT", "version": "2.0.1", "description": "Ai4Privacy Extension helps protect personal data with ChatGPT AI interactions, anonymising sensitive info for secure AI usage.", "minimum_chrome_version": "116", "action": { "default_icon": ".\/assets\/normal_128.png", "default_popup": ".\/dist\/popup\/index.html" }, "options_ui": { "page": ".\/dist\/options\/index.html", "open_in_tab": true }, "background": { "service_worker": ".\/dist\/background\/index.mjs" }, "icons": { "128": ".\/assets\/normal_128.png" }, "permissions": [ "storage" ], "host_permissions": [ "http:\/\/chat.openai.com\/*", "https:\/\/chat.openai.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/chat.openai.com\/*", "https:\/\/chat.openai.com\/*" ], "js": [ "dist\/contentScripts\/index.global.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ { "resources": [ "models\/*", "dist\/contentScripts\/style.css" ], "matches": [ "http:\/\/chat.openai.com\/*", "https:\/\/chat.openai.com\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'" } } |