AI Noise-cancelling headphones
An extension to filter out AI-generated noise from your browsing experience
Co to jest AI Noise-cancelling headphones?
AI Noise-cancelling headphones to rozszerzenie Chrome opracowane przez Jacob Torrey - Thinkst Labs, a jego główną funkcją jest „An extension to filter out AI-generated noise from your browsing experience”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia AI Noise-cancelling headphones
Pobierz pliki rozszerzeń AI Noise-cancelling headphones w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | AI Noise-cancelling headphones |
ID | okghlbkbacncfnfcielbncabioedklcn |
Oficjalny URL | https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn |
Opis | An extension to filter out AI-generated noise from your browsing experience |
Rozmiar pliku | 65.57 KB |
Liczba instalacji | 345 |
Aktualna Wersja | 0.3.1 |
Ostatnia Aktualizacja | 2023-09-22 |
Data Publikacji | 2023-08-29 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Jacob Torrey - Thinkst Labs |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/thinkst/zippy/tree/main/inch |
Adres URL Strony Polityki Prywatności | https://canary.tools/privacy |
Obsługiwane Języki | 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" } } |