AI Noise-cancelling headphones
An extension to filter out AI-generated noise from your browsing experience
O que é AI Noise-cancelling headphones?
AI Noise-cancelling headphones é uma extensão do Chrome desenvolvida por Jacob Torrey - Thinkst Labs, e sua principal característica é "An extension to filter out AI-generated noise from your browsing experience".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão AI Noise-cancelling headphones
Baixe arquivos de extensão AI Noise-cancelling headphones no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | AI Noise-cancelling headphones |
ID | okghlbkbacncfnfcielbncabioedklcn |
URL Oficial | https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn |
Descrição | An extension to filter out AI-generated noise from your browsing experience |
Tamanho do Arquivo | 65.57 KB |
Contagem de Instalações | 345 |
Versão Atual | 0.3.1 |
Última Atualização | 2023-09-22 |
Data de Publicação | 2023-08-29 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Jacob Torrey - Thinkst Labs |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/thinkst/zippy/tree/main/inch |
URL da Página de Política de Privacidade | https://canary.tools/privacy |
Idiomas Suportados | 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" } } |