AI Noise-cancelling headphones
An extension to filter out AI-generated noise from your browsing experience
Apa itu AI Noise-cancelling headphones?
AI Noise-cancelling headphones adalah ekstensi Chrome yang dikembangkan oleh Jacob Torrey - Thinkst Labs, dan fitur utamanya adalah "An extension to filter out AI-generated noise from your browsing experience".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi AI Noise-cancelling headphones
Unduh file ekstensi AI Noise-cancelling headphones dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | AI Noise-cancelling headphones |
ID | okghlbkbacncfnfcielbncabioedklcn |
URL Resmi | https://chromewebstore.google.com/detail/ai-noise-cancelling-headp/okghlbkbacncfnfcielbncabioedklcn |
Deskripsi | An extension to filter out AI-generated noise from your browsing experience |
Ukuran File | 65.57 KB |
Jumlah Instalasi | 345 |
Versi Saat Ini | 0.3.1 |
Terakhir Diperbarui | 2023-09-22 |
Tanggal Publikasi | 2023-08-29 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Jacob Torrey - Thinkst Labs |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/thinkst/zippy/tree/main/inch |
URL Halaman Kebijakan Privasi | https://canary.tools/privacy |
Bahasa yang Didukung | 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" } } |