AI Noise-cancelling headphones
An extension to filter out AI-generated noise from your browsing experience
Wat is AI Noise-cancelling headphones?
AI Noise-cancelling headphones is een Chrome-extensie ontwikkeld door Jacob Torrey - Thinkst Labs, en de belangrijkste functie is "An extension to filter out AI-generated noise from your browsing experience".
Extensie Screenshots
Download het CRX-bestand van de extensie AI Noise-cancelling headphones
Download AI Noise-cancelling headphones-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | AI Noise-cancelling headphones |
ID | okghlbkbacncfnfcielbncabioedklcn |
Officiële URL | https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn |
Beschrijving | An extension to filter out AI-generated noise from your browsing experience |
Bestandsgrootte | 65.57 KB |
Aantal Installaties | 345 |
Huidige Versie | 0.3.1 |
Laatst Bijgewerkt | 2023-09-22 |
Publicatiedatum | 2023-08-29 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Jacob Torrey - Thinkst Labs |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/thinkst/zippy/tree/main/inch |
URL van de Privacybeleid Pagina | https://canary.tools/privacy |
Ondersteunde Talen | 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" } } |