AI Noise-cancelling headphones
An extension to filter out AI-generated noise from your browsing experience
AI Noise-cancelling headphones란 무엇입니까?
AI Noise-cancelling headphones은(는) Jacob Torrey - Thinkst Labs에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension to filter out AI-generated noise from your browsing experience"입니다.
확장 프로그램 스크린샷
AI Noise-cancelling headphones 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a proof-of-concept extension that uses the LZMA-based ZipPy (ported to Nim/JS) to set the transparency of each paragraph to the confidence that ZipPy has that the text is LLM-generated.
확장 프로그램 기본 정보
이름 | AI Noise-cancelling headphones |
ID | okghlbkbacncfnfcielbncabioedklcn |
공식 URL | https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn |
설명 | An extension to filter out AI-generated noise from your browsing experience |
파일 크기 | 65.57 KB |
설치 횟수 | 345 |
현재 버전 | 0.3.1 |
최근 업데이트 | 2023-09-22 |
출시 날짜 | 2023-08-29 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Jacob Torrey - Thinkst Labs |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/thinkst/zippy/tree/main/inch |
개인정보 보호 정책 페이지 URL | https://canary.tools/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.3.1", "name": "AI Noise-cancelling headphones", "author": "[email protected]", "description": "An extension to filter out AI-generated noise from your browsing experience", "permissions": [ "contextMenus", "storage" ], "icons": { "16": "nch_small.png", "48": "nch_med.png", "128": "nch_large.png" }, "content_scripts": [ { "js": [ "scripts\/nch.js" ], "matches": [ "*:\/\/*\/*" ] } ], "background": { "service_worker": "scripts\/nch-worker.js" } } |