AI Noise-cancelling headphones
An extension to filter out AI-generated noise from your browsing experience
What is AI Noise-cancelling headphones?
AI Noise-cancelling headphones is a Chrome extension developed by Jacob Torrey - Thinkst Labs, and its main feature is "An extension to filter out AI-generated noise from your browsing experience".
Extension Screenshots
Download AI Noise-cancelling headphones Extension CRX File
Download AI Noise-cancelling headphones extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | AI Noise-cancelling headphones |
ID | okghlbkbacncfnfcielbncabioedklcn |
Official URL | https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn |
Description | An extension to filter out AI-generated noise from your browsing experience |
File Size | 65.57 KB |
Installation Count | 345 |
Current Version | 0.3.1 |
Last Updated | 2023-09-22 |
Publish Date | 2023-08-29 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Jacob Torrey - Thinkst Labs |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/thinkst/zippy/tree/main/inch |
Privacy Policy Page URL | https://canary.tools/privacy |
Supported Languages | 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" } } |