AI Noise-cancelling headphones

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

Qu'est-ce que AI Noise-cancelling headphones ?

AI Noise-cancelling headphones est une extension Chrome développée par Jacob Torrey - Thinkst Labs, et sa fonction principale est "An extension to filter out AI-generated noise from your browsing experience".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension AI Noise-cancelling headphones

Téléchargez les fichiers d'extension AI Noise-cancelling headphones au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom AI Noise-cancelling headphones AI Noise-cancelling headphones
ID okghlbkbacncfnfcielbncabioedklcn
URL Officiel https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn
Description An extension to filter out AI-generated noise from your browsing experience
Taille du Fichier 65.57 KB
Nombre d'Installations 345
Version Actuelle 0.3.1
Dernière Mise à Jour 2023-09-22
Date de Publication 2023-08-29
Évaluation 5.00/5 Total 1 Évaluations
Développeur Jacob Torrey - Thinkst Labs
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/thinkst/zippy/tree/main/inch
URL de la Page de Politique de Confidentialité https://canary.tools/privacy
Langues Prises en Charge 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"
    }
}