AI Noise-cancelling headphones

An extension to filter out AI-generated noise from your browsing experience

Cos'è AI Noise-cancelling headphones?

AI Noise-cancelling headphones è un'estensione di Chrome sviluppata da Jacob Torrey - Thinkst Labs, e la sua funzione principale è "An extension to filter out AI-generated noise from your browsing experience".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AI Noise-cancelling headphones

Scarica i file di estensione AI Noise-cancelling headphones in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AI Noise-cancelling headphones AI Noise-cancelling headphones
ID okghlbkbacncfnfcielbncabioedklcn
URL Ufficiale https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn
Descrizione An extension to filter out AI-generated noise from your browsing experience
Dimensione del File 65.57 KB
Conteggio Installazioni 345
Versione Corrente 0.3.1
Ultimo Aggiornamento 2023-09-22
Data di Pubblicazione 2023-08-29
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Jacob Torrey - Thinkst Labs
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/thinkst/zippy/tree/main/inch
URL della Pagina della Politica sulla Privacy https://canary.tools/privacy
Lingue Supportate 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"
    }
}