AI Noise-cancelling headphones
An extension to filter out AI-generated noise from your browsing experience
Co je AI Noise-cancelling headphones?
AI Noise-cancelling headphones je rozšíření Chrome vyvinuté Jacob Torrey - Thinkst Labs, a jeho hlavní funkcí je „An extension to filter out AI-generated noise from your browsing experience“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření AI Noise-cancelling headphones
Stáhněte si soubory rozšíření AI Noise-cancelling headphones ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
                        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.                     Základní Informace o Rozšíření
| Název |   |  
| ID | okghlbkbacncfnfcielbncabioedklcn | 
| Oficiální URL | https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn | 
| Popis | An extension to filter out AI-generated noise from your browsing experience | 
| Velikost souboru | 65.57 KB | 
| Počet instalací | 345 | 
| Aktuální Verze | 0.3.1 | 
| Poslední Aktualizace | 2023-09-22 | 
| Datum Vydání | 2023-08-29 | 
| Hodnocení | 5.00/5 Celkem 1 Hodnocení | 
| Vývojář | Jacob Torrey - Thinkst Labs | 
| [email protected] | |
| Typ Platby | free | 
| Webové stránky Rozšíření | https://github.com/thinkst/zippy/tree/main/inch | 
| URL Stránky Zásad Ochrany Soukromí | https://canary.tools/privacy | 
| Podporované Jazyky | 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"
    }
}  |  |